結果

問題 No.2784 繰り上がりなし十進和
ユーザー rlangevinrlangevin
提出日時 2024-06-14 21:55:08
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 434 bytes
コンパイル時間 199 ms
コンパイル使用メモリ 82,256 KB
実行使用メモリ 53,716 KB
最終ジャッジ日時 2024-06-14 21:55:13
合計ジャッジ時間 2,323 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
52,664 KB
testcase_01 AC 35 ms
52,236 KB
testcase_02 AC 35 ms
51,828 KB
testcase_03 AC 37 ms
52,432 KB
testcase_04 AC 33 ms
52,924 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 32 ms
52,316 KB
testcase_10 AC 32 ms
53,192 KB
testcase_11 WA -
testcase_12 AC 32 ms
52,608 KB
testcase_13 AC 33 ms
53,228 KB
testcase_14 AC 33 ms
52,492 KB
testcase_15 AC 32 ms
52,240 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 33 ms
52,688 KB
testcase_21 WA -
testcase_22 AC 34 ms
52,316 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 33 ms
52,340 KB
testcase_27 AC 31 ms
52,888 KB
testcase_28 WA -
testcase_29 AC 32 ms
53,036 KB
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 AC 33 ms
52,320 KB
testcase_34 WA -
testcase_35 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

A = []
for i in range(6):
    L = [int(a) for a in list(input())]
    A.append(L)
    
ans = 1
for i in range(6):
    S = [0] * 10
    for j in range(6):
        S[A[j][i]] = 1
    if S[1] or S[3] or S[7] or S[9]:
        ans *= 10
    elif S[5]:
        if sum(S[1:]) == 1:
            ans *= 2
        else:
            ans *= 10
    elif S[2] or S[4] or S[6] or S[8]:
        ans *= 5
    else:
        ans *= 1
        
print(ans)
0