結果

問題 No.2784 繰り上がりなし十進和
ユーザー june19312june19312
提出日時 2024-06-14 23:15:54
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 666 bytes
コンパイル時間 473 ms
コンパイル使用メモリ 82,436 KB
実行使用メモリ 53,840 KB
最終ジャッジ日時 2024-06-14 23:15:57
合計ジャッジ時間 3,273 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,452 KB
testcase_01 AC 39 ms
52,864 KB
testcase_02 AC 38 ms
52,328 KB
testcase_03 AC 38 ms
52,272 KB
testcase_04 AC 38 ms
52,956 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 37 ms
53,348 KB
testcase_10 AC 38 ms
52,124 KB
testcase_11 WA -
testcase_12 AC 38 ms
53,140 KB
testcase_13 AC 38 ms
51,944 KB
testcase_14 AC 46 ms
52,280 KB
testcase_15 AC 38 ms
52,732 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 38 ms
52,536 KB
testcase_21 WA -
testcase_22 AC 38 ms
52,344 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 39 ms
52,632 KB
testcase_27 AC 38 ms
53,288 KB
testcase_28 WA -
testcase_29 AC 38 ms
52,248 KB
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 AC 39 ms
52,080 KB
testcase_34 WA -
testcase_35 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

a = [set(),set(),set(),set(),set(),set()]

for i in range(6):
    s = input()
    for ii,vv in enumerate(s):
        a[ii].add(int(vv))

ans = 1

for i in a:
    gusuflg = False
    kisuflg = False
    flg5 = False
    for j in sorted(i):
        if j == 0:
            continue
        elif j == 5:
            flg5 = True
        elif j % 2 == 0:
            gusuflg = True
        elif j % 2 == 1:
            kisuflg = True
    
    if flg5 and not gusuflg and not kisuflg:
        ans *= 2
    elif gusuflg and not flg5 and not kisuflg:
        ans *= 5
    elif gusuflg and (flg5 or kisuflg):
        ans *= 10
    elif kisuflg:
        ans *= 10

print(ans)

0