結果

問題 No.2784 繰り上がりなし十進和
ユーザー Akijin_007Akijin_007
提出日時 2024-06-15 19:22:14
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 777 ms / 2,000 ms
コード長 428 bytes
コンパイル時間 466 ms
コンパイル使用メモリ 82,500 KB
実行使用メモリ 219,668 KB
最終ジャッジ日時 2024-06-15 19:22:40
合計ジャッジ時間 25,370 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 541 ms
75,996 KB
testcase_01 AC 537 ms
76,048 KB
testcase_02 AC 661 ms
219,188 KB
testcase_03 AC 509 ms
76,416 KB
testcase_04 AC 518 ms
76,056 KB
testcase_05 AC 517 ms
75,936 KB
testcase_06 AC 521 ms
75,744 KB
testcase_07 AC 528 ms
76,056 KB
testcase_08 AC 523 ms
76,168 KB
testcase_09 AC 544 ms
75,948 KB
testcase_10 AC 527 ms
76,228 KB
testcase_11 AC 523 ms
76,072 KB
testcase_12 AC 653 ms
219,252 KB
testcase_13 AC 616 ms
219,124 KB
testcase_14 AC 568 ms
111,012 KB
testcase_15 AC 542 ms
83,212 KB
testcase_16 AC 646 ms
84,596 KB
testcase_17 AC 743 ms
136,160 KB
testcase_18 AC 674 ms
134,484 KB
testcase_19 AC 691 ms
86,952 KB
testcase_20 AC 754 ms
219,132 KB
testcase_21 AC 658 ms
87,156 KB
testcase_22 AC 777 ms
219,148 KB
testcase_23 AC 559 ms
79,112 KB
testcase_24 AC 685 ms
92,128 KB
testcase_25 AC 753 ms
136,588 KB
testcase_26 AC 709 ms
219,224 KB
testcase_27 AC 749 ms
219,288 KB
testcase_28 AC 629 ms
105,876 KB
testcase_29 AC 735 ms
219,668 KB
testcase_30 AC 627 ms
106,296 KB
testcase_31 AC 610 ms
84,400 KB
testcase_32 AC 674 ms
136,384 KB
testcase_33 AC 709 ms
136,284 KB
testcase_34 AC 687 ms
92,132 KB
testcase_35 AC 602 ms
81,728 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from itertools import product

A = [0] * 6
for i in range(6):
    A[i] = list(input())
    for j in range(6):
        A[i][j] = int(A[i][j])

ans = set()

for x in product(range(10), repeat=6):
    #print(x)
    s = [0] * 6
    for i in range(6):
        for j in range(6):
            s[j] += A[i][j] * x[i]

    t = 0
    for i in range(6):
        t += (s[i] % 10) * 10 ** (5-i)

    ans.add(t)

print(len(ans))
#print(ans)

0