結果
問題 | No.2600 Avator Height |
ユーザー | 👑 amentorimaru |
提出日時 | 2023-10-27 15:34:04 |
言語 | C++17(clang) (17.0.6 + boost 1.83.0) |
結果 |
WA
(最新)
AC
(最初)
|
実行時間 | - |
コード長 | 767 bytes |
コンパイル時間 | 10,357 ms |
コンパイル使用メモリ | 141,456 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-09-26 23:57:15 |
合計ジャッジ時間 | 4,686 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
ソースコード
#include<iostream> #include<string> #include<atcoder/all> using namespace std; using namespace atcoder; using mint = modint998244353; vector<mint> mul(vector<mint>& a, vector<mint>& b) { vector<mint> res = { a[0] * b[0] + a[1] * b[2],a[0] * b[1] + a[1] * b[3],a[2] * b[0] + a[3] * b[2],a[2] * b[1] + a[3] * b[3] }; return res; } vector<mint> power(long long n, vector<mint>& mut) { vector<mint> res = { 1,0,0,1 }; if (n == 0) return res; auto pow = mul(mut, mut); res = power(n / 2, pow); if (n % 2)res = mul(res, mut); return res; } int main() { long long n; cin >> n; vector<mint> mut = { 0,1,1,1 }; auto res = power(n - 1, mut); cout << (5 * (res[0] + res[1]) * (res[0] + res[1]) - (res[0] + 3 * res[1]) * (res[0] + 3 * res[1])).val() << endl;; }