結果
問題 | No.1310 量子アニーリング |
ユーザー | tnakao0123 |
提出日時 | 2020-12-08 13:18:35 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,320 bytes |
コンパイル時間 | 667 ms |
コンパイル使用メモリ | 95,652 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-09-17 14:35:40 |
合計ジャッジ時間 | 1,549 ms |
ジャッジサーバーID (参考情報) |
judge6 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | AC | 1 ms
5,376 KB |
testcase_06 | WA | - |
testcase_07 | AC | 2 ms
5,376 KB |
testcase_08 | AC | 2 ms
5,376 KB |
testcase_09 | AC | 1 ms
5,376 KB |
testcase_10 | WA | - |
testcase_11 | AC | 2 ms
5,376 KB |
testcase_12 | AC | 3 ms
5,376 KB |
testcase_13 | AC | 11 ms
5,376 KB |
testcase_14 | AC | 16 ms
5,376 KB |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | AC | 29 ms
5,376 KB |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | AC | 9 ms
5,376 KB |
testcase_21 | AC | 6 ms
5,376 KB |
testcase_22 | AC | 38 ms
5,376 KB |
testcase_23 | AC | 12 ms
5,376 KB |
ソースコード
/* -*- coding: utf-8 -*- * * 1310.cc: No.1310 量子アニーリング - yukicoder */ #include<cstdio> #include<cstdlib> #include<cstring> #include<cmath> #include<iostream> #include<string> #include<vector> #include<map> #include<set> #include<stack> #include<list> #include<queue> #include<deque> #include<algorithm> #include<numeric> #include<utility> #include<complex> #include<functional> using namespace std; /* constant */ const int MAX_N = 200000; const int MOD = 998244353; /* typedef */ typedef long long ll; /* global variables */ int fs[MAX_N + 1], invfs[MAX_N + 1]; /* subroutines */ int powmod(int a, int n) { // a^n % MOD int pm = 1; while (n > 0) { if (n & 1) pm = (ll)pm * a % MOD; a = (ll)a * a % MOD; n >>= 1; } return pm; } inline int nck(int n, int k) { // nCk % MOD return (ll)fs[n] * invfs[n - k] % MOD * invfs[k] % MOD; } void prepare_fracs(int n) { fs[0] = invfs[0] = 1; for (int i = 1; i <= n; i++) { fs[i] = (ll)fs[i - 1] * i % MOD; invfs[i] = powmod(fs[i], MOD - 2); } } /* main */ int main() { int n; scanf("%d", &n); prepare_fracs(n); int sum = 0; for (int i = 0; i < n; i += 2) { int c = nck(n, i); sum = (sum + (ll)c * powmod(2, abs(n - i * 2)) % MOD) % MOD; } printf("%d\n", sum * 2 % MOD); return 0; }