結果
問題 | No.2784 繰り上がりなし十進和 |
ユーザー | dp_ijk |
提出日時 | 2024-06-17 23:52:45 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 305 bytes |
コンパイル時間 | 427 ms |
コンパイル使用メモリ | 82,576 KB |
実行使用メモリ | 238,464 KB |
最終ジャッジ日時 | 2024-06-17 23:53:20 |
合計ジャッジ時間 | 34,040 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 821 ms
76,160 KB |
testcase_01 | AC | 825 ms
76,544 KB |
testcase_02 | AC | 1,010 ms
238,208 KB |
testcase_03 | AC | 825 ms
76,288 KB |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | AC | 855 ms
76,572 KB |
testcase_10 | AC | 814 ms
76,160 KB |
testcase_11 | WA | - |
testcase_12 | AC | 921 ms
238,464 KB |
testcase_13 | AC | 934 ms
238,208 KB |
testcase_14 | AC | 906 ms
115,328 KB |
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 | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | WA | - |
testcase_31 | WA | - |
testcase_32 | WA | - |
testcase_33 | WA | - |
testcase_34 | WA | - |
testcase_35 | WA | - |
ソースコード
from itertools import product As = [list(map(int, input())) for _ in range(6)] d = set() for C in product(list(range(10)), repeat=6): X = [0]*6 for A in As: for i in range(6): X[i] += C[i] * A[i] X = [x%10 for x in X] d.add(int("".join(map(str, X)))) ans = len(d) print(ans)