daylight-library

This documentation is automatically generated by competitive-verifier/competitive-verifier

View the Project on GitHub daylight-pro/daylight-library

:heavy_check_mark: test/yukicoder/2441.test.cpp

Depends on

Code

#define PROBLEM "https://yukicoder.me/problems/no/2441"
#include "daylight/base.hpp"
#include "daylight/math/matrix.hpp"

int main() {
	vvi M(2, vi(2));
	cin >> M;
	auto ans = powMatrix(M, 3);
	REP(i, 2) {
		cout << ans[i] << endl;
	}
}
Traceback (most recent call last):
  File "/home/runner/.local/lib/python3.10/site-packages/competitive_verifier/oj_resolve/resolver.py", line 181, in resolve
    bundled_code = language.bundle(path, basedir=basedir)
  File "/home/runner/.local/lib/python3.10/site-packages/competitive_verifier/oj/verify/languages/cplusplus.py", line 252, in bundle
    bundler.update(path)
  File "/home/runner/.local/lib/python3.10/site-packages/competitive_verifier/oj/verify/languages/cplusplus_bundle.py", line 482, in update
    self.update(
  File "/home/runner/.local/lib/python3.10/site-packages/competitive_verifier/oj/verify/languages/cplusplus_bundle.py", line 477, in update
    raise BundleErrorAt(
competitive_verifier.oj.verify.languages.cplusplus_bundle.BundleErrorAt: daylight/base.hpp: line 103: unable to process #include in #if / #ifdef / #ifndef other than include guards

Test cases

Env Name Status Elapsed Memory
g++ Kawaranai_00.txt :heavy_check_mark: AC 6 ms 3 MB
g++ Kawaranai_01.txt :heavy_check_mark: AC 6 ms 3 MB
g++ Kawaranai_02.txt :heavy_check_mark: AC 5 ms 3 MB
g++ Kawaranai_03.txt :heavy_check_mark: AC 5 ms 3 MB
g++ Kawaranai_04.txt :heavy_check_mark: AC 5 ms 3 MB
g++ Kawaranai_05.txt :heavy_check_mark: AC 5 ms 3 MB
g++ Kawaranai_06.txt :heavy_check_mark: AC 5 ms 3 MB
g++ Kawaranai_07.txt :heavy_check_mark: AC 5 ms 3 MB
g++ Kawaranai_08.txt :heavy_check_mark: AC 5 ms 3 MB
g++ Kawaranai_09.txt :heavy_check_mark: AC 5 ms 3 MB
g++ Kawaru_00.txt :heavy_check_mark: AC 5 ms 3 MB
g++ Kawaru_01.txt :heavy_check_mark: AC 5 ms 3 MB
g++ Kawaru_02.txt :heavy_check_mark: AC 5 ms 3 MB
g++ Kawaru_03.txt :heavy_check_mark: AC 6 ms 3 MB
g++ Ookii_00.txt :heavy_check_mark: AC 5 ms 3 MB
g++ Ookii_01.txt :heavy_check_mark: AC 5 ms 3 MB
g++ Ookii_02.txt :heavy_check_mark: AC 5 ms 3 MB
g++ Ookii_03.txt :heavy_check_mark: AC 5 ms 3 MB
g++ Ookii_04.txt :heavy_check_mark: AC 5 ms 3 MB
g++ Ookii_05.txt :heavy_check_mark: AC 5 ms 3 MB
Back to top page