結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,292 KB
testcase_01 AC 42 ms
58,128 KB
testcase_02 AC 42 ms
59,996 KB
testcase_03 AC 39 ms
52,700 KB
testcase_04 AC 39 ms
51,812 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 43 ms
59,132 KB
testcase_10 AC 43 ms
59,500 KB
testcase_11 WA -
testcase_12 AC 42 ms
60,076 KB
testcase_13 AC 43 ms
59,688 KB
testcase_14 AC 43 ms
59,372 KB
testcase_15 AC 45 ms
60,816 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 46 ms
60,676 KB
testcase_21 WA -
testcase_22 AC 43 ms
59,888 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 43 ms
59,564 KB
testcase_27 AC 43 ms
59,784 KB
testcase_28 WA -
testcase_29 AC 44 ms
59,072 KB
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 AC 46 ms
60,712 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 = 10
    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