結果
問題 | No.3094 Character Table |
ユーザー | 👑 rin204 |
提出日時 | 2022-04-01 22:38:55 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 605 bytes |
コンパイル時間 | 216 ms |
コンパイル使用メモリ | 82,092 KB |
実行使用メモリ | 54,416 KB |
最終ジャッジ日時 | 2024-11-20 10:37:00 |
合計ジャッジ時間 | 1,951 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 39 ms
52,896 KB |
testcase_01 | AC | 40 ms
52,064 KB |
testcase_02 | AC | 38 ms
53,280 KB |
testcase_03 | AC | 38 ms
52,488 KB |
testcase_04 | AC | 40 ms
53,776 KB |
testcase_05 | AC | 39 ms
52,784 KB |
testcase_06 | AC | 39 ms
52,408 KB |
testcase_07 | AC | 39 ms
52,832 KB |
testcase_08 | AC | 38 ms
52,400 KB |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | AC | 39 ms
52,228 KB |
testcase_15 | AC | 38 ms
52,948 KB |
testcase_16 | AC | 39 ms
52,824 KB |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | AC | 39 ms
53,596 KB |
testcase_21 | AC | 39 ms
52,776 KB |
testcase_22 | AC | 39 ms
53,772 KB |
ソースコード
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)