結果

問題 No.3094 Character Table
ユーザー 👑 rin204rin204
提出日時 2022-04-01 22:38:55
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 605 bytes
コンパイル時間 164 ms
コンパイル使用メモリ 82,752 KB
実行使用メモリ 54,060 KB
最終ジャッジ日時 2024-04-30 14:55:41
合計ジャッジ時間 2,081 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,528 KB
testcase_01 AC 38 ms
53,412 KB
testcase_02 AC 39 ms
53,124 KB
testcase_03 AC 39 ms
52,924 KB
testcase_04 AC 38 ms
53,484 KB
testcase_05 AC 40 ms
53,152 KB
testcase_06 AC 40 ms
52,260 KB
testcase_07 AC 39 ms
53,848 KB
testcase_08 AC 39 ms
53,168 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 38 ms
53,324 KB
testcase_15 AC 38 ms
53,276 KB
testcase_16 AC 38 ms
52,528 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 38 ms
53,632 KB
testcase_21 AC 39 ms
53,264 KB
testcase_22 AC 39 ms
53,140 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
A = [input().split() for _ in range(n)]
tot = 0
for row in A:
    for a in row:
        if a != "?":
            tot += int(a)

if n == 1:
    print(1)
elif n == 2:
    print(2 - tot)
elif n == 3:
    print(5 - tot)
elif n == 4:
    print(4 - tot)
elif n == 5:
    three = False
    for row in A:
        if "3" in row:
            three = True
            break
    if three:
        print(13 - tot)
    else:
        print(8 - tot)
elif n == 6:
    print(10 - tot)
elif n == 8:
    print(8 - tot)
elif n == 10:
    if tot >= 20:
        print(26 - tot)
    else:
        print(16 - tot)
0