結果

問題 No.2784 繰り上がりなし十進和
ユーザー detteiuudetteiuu
提出日時 2024-06-14 22:47:12
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,988 ms / 2,000 ms
コード長 513 bytes
コンパイル時間 388 ms
コンパイル使用メモリ 82,944 KB
実行使用メモリ 199,800 KB
最終ジャッジ日時 2024-06-14 22:48:29
合計ジャッジ時間 63,978 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,451 ms
76,736 KB
testcase_01 AC 1,481 ms
76,800 KB
testcase_02 AC 1,921 ms
199,800 KB
testcase_03 AC 1,471 ms
76,760 KB
testcase_04 AC 1,463 ms
76,928 KB
testcase_05 AC 1,456 ms
76,492 KB
testcase_06 AC 1,486 ms
77,056 KB
testcase_07 AC 1,445 ms
76,932 KB
testcase_08 AC 1,486 ms
76,928 KB
testcase_09 AC 1,566 ms
76,832 KB
testcase_10 AC 1,495 ms
77,168 KB
testcase_11 AC 1,520 ms
76,812 KB
testcase_12 AC 1,978 ms
199,548 KB
testcase_13 AC 1,988 ms
199,256 KB
testcase_14 AC 1,705 ms
105,788 KB
testcase_15 AC 1,519 ms
82,720 KB
testcase_16 AC 1,543 ms
87,428 KB
testcase_17 AC 1,749 ms
137,076 KB
testcase_18 AC 1,736 ms
136,604 KB
testcase_19 AC 1,610 ms
90,264 KB
testcase_20 AC 1,966 ms
199,284 KB
testcase_21 AC 1,601 ms
87,336 KB
testcase_22 AC 1,947 ms
199,728 KB
testcase_23 AC 1,544 ms
80,172 KB
testcase_24 AC 1,668 ms
100,224 KB
testcase_25 AC 1,861 ms
137,216 KB
testcase_26 AC 1,932 ms
199,416 KB
testcase_27 AC 1,949 ms
199,736 KB
testcase_28 AC 1,729 ms
105,640 KB
testcase_29 AC 1,949 ms
199,564 KB
testcase_30 AC 1,674 ms
106,028 KB
testcase_31 AC 1,659 ms
87,576 KB
testcase_32 AC 1,859 ms
137,220 KB
testcase_33 AC 1,819 ms
137,180 KB
testcase_34 AC 1,741 ms
100,440 KB
testcase_35 AC 1,553 ms
82,392 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

A = [list(input()) for _ in range(6)]

for i in range(6):
    for j in range(6):
        A[i][j] = int(A[i][j])

S = set()
for bit in range(10**6):
    a = [b[:] for b in A]
    C = []
    for i in range(6):
        C.append(bit//10**i%10)
    for i in range(6):
        for j in range(6):
            a[i][j] *= C[i]
            a[i][j] %= 10
    ans = [0]*6
    for i in range(6):
        for j in range(6):
            ans[j] += a[i][j]
            ans[j] %= 10
    S.add("".join(map(str, ans)))

print(len(S))
0