結果
問題 | No.2156 ぞい文字列 |
ユーザー | pengin_2000 |
提出日時 | 2022-12-09 22:39:07 |
言語 | C (gcc 12.3.0) |
結果 |
AC
|
実行時間 | 2 ms / 2,000 ms |
コード長 | 1,229 bytes |
コンパイル時間 | 325 ms |
コンパイル使用メモリ | 30,208 KB |
実行使用メモリ | 6,824 KB |
最終ジャッジ日時 | 2024-10-14 22:32:10 |
合計ジャッジ時間 | 1,027 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
6,816 KB |
testcase_01 | AC | 1 ms
6,824 KB |
testcase_02 | AC | 1 ms
6,816 KB |
testcase_03 | AC | 1 ms
6,820 KB |
testcase_04 | AC | 1 ms
6,816 KB |
testcase_05 | AC | 1 ms
6,820 KB |
testcase_06 | AC | 1 ms
6,816 KB |
testcase_07 | AC | 1 ms
6,820 KB |
testcase_08 | AC | 1 ms
6,816 KB |
testcase_09 | AC | 1 ms
6,820 KB |
testcase_10 | AC | 1 ms
6,816 KB |
testcase_11 | AC | 1 ms
6,820 KB |
testcase_12 | AC | 1 ms
6,816 KB |
testcase_13 | AC | 1 ms
6,816 KB |
testcase_14 | AC | 1 ms
6,820 KB |
testcase_15 | AC | 1 ms
6,820 KB |
testcase_16 | AC | 1 ms
6,820 KB |
testcase_17 | AC | 2 ms
6,816 KB |
testcase_18 | AC | 1 ms
6,816 KB |
testcase_19 | AC | 1 ms
6,816 KB |
ソースコード
#include<stdio.h> long long int a[2][2]; long long int res[2][2]; void modpow(long long int n, long long int p) { res[0][0] = 1; res[0][1] = 0; res[1][0] = 0; res[1][1] = 1; int f[2][2]; for (; n > 0; n /= 2) { if (n % 2 > 0) { f[0][0] = a[0][0] * res[0][0] % p + a[0][1] * res[1][0] % p; f[0][1] = a[0][0] * res[0][1] % p + a[0][1] * res[1][1] % p; f[1][0] = a[1][0] * res[0][0] % p + a[1][1] * res[1][0] % p; f[1][1] = a[1][0] * res[0][1] % p + a[1][1] * res[1][1] % p; res[0][0] = f[0][0] % p; res[0][1] = f[0][1] % p; res[1][0] = f[1][0] % p; res[1][1] = f[1][1] % p; } f[0][0] = a[0][0] * a[0][0] % p + a[0][1] * a[1][0] % p; f[0][1] = a[0][0] * a[0][1] % p + a[0][1] * a[1][1] % p; f[1][0] = a[1][0] * a[0][0] % p + a[1][1] * a[1][0] % p; f[1][1] = a[1][0] * a[0][1] % p + a[1][1] * a[1][1] % p; a[0][0] = f[0][0] % p; a[0][1] = f[0][1] % p; a[1][0] = f[1][0] % p; a[1][1] = f[1][1] % p; } return; } int main() { long long int n; scanf("%lld", &n); const long long int p = 998244353; a[0][0] = 1; a[0][1] = 1; a[1][0] = 1; a[1][1] = 0; modpow(n - 1, p); long long int ans = res[0][0] + res[1][0] - 1; ans = (ans % p + p) % p; printf("%lld\n", ans); return 0; }