結果
問題 | No.1085 桁和の桁和 |
ユーザー | kriii |
提出日時 | 2020-06-19 21:52:55 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 670 bytes |
コンパイル時間 | 305 ms |
コンパイル使用メモリ | 32,384 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-07-23 00:02:44 |
合計ジャッジ時間 | 1,663 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
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 | AC | 2 ms
5,376 KB |
testcase_04 | AC | 2 ms
5,376 KB |
testcase_05 | AC | 1 ms
5,376 KB |
testcase_06 | AC | 2 ms
5,376 KB |
testcase_07 | AC | 2 ms
5,376 KB |
testcase_08 | AC | 2 ms
5,376 KB |
testcase_09 | WA | - |
testcase_10 | AC | 1 ms
5,376 KB |
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 | AC | 2 ms
5,376 KB |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | AC | 2 ms
5,376 KB |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | AC | 8 ms
5,376 KB |
testcase_30 | AC | 7 ms
5,376 KB |
testcase_31 | WA | - |
testcase_32 | WA | - |
testcase_33 | WA | - |
testcase_34 | WA | - |
testcase_35 | WA | - |
testcase_36 | WA | - |
testcase_37 | WA | - |
testcase_38 | WA | - |
ソースコード
#include <stdio.h> char S[100100]; int D; long long C[9] = { 1, }, P[9]; int main() { scanf ("%s %d", S, &D); if (D == 0){ bool g = 1; for (int i = 0; S[i]; i++){ if (S[i] == '?' || S[i] == '0'); else g = 0; } puts(g ? "1" : "0"); return 0; } int s = 0; const long long mod = 1000000007; for (int i = 0; S[i]; i++){ if (S[i] == '?'){ for (int j = 0; j < 9; j++) P[j] = 0; for (int j = 0; j < 9; j++) for (int k = 0; k < 10; k++){ P[(j + k) % 9] = (P[(j + k) % 9] + C[j]) % mod; } for (int j = 0; j < 9; j++) C[j] = P[j]; } else s += S[i] - '0'; } if (D == 9) D = 0; printf ("%lld\n", C[(D + 9 - s) % 9]); return 0; }