結果

問題 No.2784 繰り上がりなし十進和
ユーザー ra5anchorra5anchor
提出日時 2024-06-14 21:53:28
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 788 bytes
コンパイル時間 319 ms
コンパイル使用メモリ 81,848 KB
実行使用メモリ 54,096 KB
最終ジャッジ日時 2024-06-14 21:53:32
合計ジャッジ時間 2,648 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,632 KB
testcase_01 AC 36 ms
52,580 KB
testcase_02 AC 35 ms
52,412 KB
testcase_03 AC 33 ms
53,540 KB
testcase_04 AC 34 ms
53,476 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 39 ms
52,632 KB
testcase_10 AC 38 ms
52,416 KB
testcase_11 WA -
testcase_12 AC 40 ms
53,072 KB
testcase_13 AC 38 ms
52,196 KB
testcase_14 AC 39 ms
52,472 KB
testcase_15 AC 36 ms
53,008 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 40 ms
52,644 KB
testcase_21 WA -
testcase_22 AC 36 ms
52,560 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 33 ms
52,744 KB
testcase_27 AC 33 ms
52,540 KB
testcase_28 WA -
testcase_29 AC 33 ms
53,416 KB
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 AC 37 ms
52,076 KB
testcase_34 WA -
testcase_35 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

S = []
for i in range(6):
    s = input()
    S.append(s)

cnts = [0]*6

def solve(st):
    stnew = st
    while True:
        found = False
        m = len(st)
        l = list(st)
        for i in range(m):
            for j in range(m):
                x1 = l[i]
                x2 = l[j]
                x = (x1 + x2) % 10
                if x not in stnew:
                    found = True
                    stnew.add(x)
                    break
            if found == True:
                break
        if found == False:
            return len(stnew)
    return 0

for i in range(6):
    # i桁目
    st = set()
    for j in range(6):
        st.add(int(S[j][i]))
    # print(st)
    cnts[i] = solve(st)
ans = 1
for i in range(6):
    ans *= cnts[i]
print(ans)
# print(cnts)
0