結果
問題 | No.1810 RGB Biscuits |
ユーザー | polylogK |
提出日時 | 2021-11-06 20:26:03 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 450 bytes |
コンパイル時間 | 370 ms |
コンパイル使用メモリ | 31,872 KB |
実行使用メモリ | 10,496 KB |
最終ジャッジ日時 | 2024-11-07 19:28:18 |
合計ジャッジ時間 | 4,112 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
10,496 KB |
testcase_01 | TLE | - |
testcase_02 | -- | - |
testcase_03 | -- | - |
testcase_04 | -- | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
ソースコード
/* # Algorithm Naive ## Time Complexity O(NT) */ #include <stdio.h> constexpr int MOD = 1'000'000'007; int main() { int A, B, N; scanf("%d%d%d", &A, &B, &N); using i64 = long long; while(N--) { int T; scanf("%d", &T); i64 r = 1, g = 1, b = 0; for(int t = 1; t <= T; t++) { if(t % 2) { (b += r * A + g * B) %= MOD; } else { g = r; r = b; b = 0; } } printf("%d\n", (r + g + b) % MOD); } return 0; }