結果

問題 No.2784 繰り上がりなし十進和
ユーザー ypwwypww
提出日時 2024-06-14 23:19:15
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 499 bytes
コンパイル時間 467 ms
コンパイル使用メモリ 82,584 KB
実行使用メモリ 64,284 KB
最終ジャッジ日時 2024-06-14 23:19:19
合計ジャッジ時間 3,976 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
60,188 KB
testcase_01 AC 45 ms
60,156 KB
testcase_02 AC 48 ms
61,760 KB
testcase_03 AC 42 ms
58,492 KB
testcase_04 AC 45 ms
60,880 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 51 ms
62,676 KB
testcase_10 AC 51 ms
61,892 KB
testcase_11 WA -
testcase_12 AC 48 ms
61,076 KB
testcase_13 AC 48 ms
61,484 KB
testcase_14 AC 52 ms
63,300 KB
testcase_15 AC 53 ms
64,284 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 48 ms
62,324 KB
testcase_21 WA -
testcase_22 AC 48 ms
61,652 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 49 ms
62,092 KB
testcase_27 AC 49 ms
62,216 KB
testcase_28 WA -
testcase_29 AC 49 ms
61,368 KB
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 AC 50 ms
62,680 KB
testcase_34 WA -
testcase_35 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

a = [input() for _ in range(6)]
c = [0] * 6
for i in range(6):
    v = [False] * 10
    for j in range(6):
        v[ord(a[j][i])-ord('0')] = True
    cnt = 40
    while cnt:
        for j in range(10):
            if not v[j]:
                continue
            for k in range(10):
                if not v[k]:
                    continue
                v[(j+k)%10] = True
        cnt -= 1
    tot = v.count(True)
    c[i] = tot

# print(c)
ans = 1
for i in range(6):
    ans *= c[i]
print(ans)
0