結果

問題 No.2784 繰り上がりなし十進和
ユーザー detteiuudetteiuu
提出日時 2024-06-14 22:07:18
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 472 bytes
コンパイル時間 238 ms
コンパイル使用メモリ 81,816 KB
実行使用メモリ 239,784 KB
最終ジャッジ日時 2024-06-14 22:08:34
合計ジャッジ時間 60,127 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,446 ms
76,844 KB
testcase_01 AC 1,461 ms
76,644 KB
testcase_02 AC 1,678 ms
239,768 KB
testcase_03 AC 1,420 ms
76,276 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 1,403 ms
76,176 KB
testcase_10 AC 1,421 ms
76,664 KB
testcase_11 WA -
testcase_12 AC 1,624 ms
239,784 KB
testcase_13 WA -
testcase_14 AC 1,543 ms
112,844 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 -
権限があれば一括ダウンロードができます

ソースコード

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
    for i in range(6):
        for j in range(6):
            ans += a[i][j]*10**(5-j)
    S.add(ans)

print(len(S))
0