結果
問題 | No.24 数当てゲーム |
ユーザー | kokesi |
提出日時 | 2019-06-25 20:14:52 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 415 bytes |
コンパイル時間 | 161 ms |
コンパイル使用メモリ | 12,544 KB |
実行使用メモリ | 10,752 KB |
最終ジャッジ日時 | 2024-06-23 06:42:30 |
合計ジャッジ時間 | 983 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 27 ms
10,752 KB |
testcase_01 | AC | 27 ms
10,624 KB |
testcase_02 | AC | 27 ms
10,752 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | AC | 28 ms
10,752 KB |
testcase_06 | WA | - |
testcase_07 | AC | 28 ms
10,752 KB |
testcase_08 | WA | - |
testcase_09 | WA | - |
ソースコード
N = input() nList = [] yList = [] r = ['0','1','2','3','4','5','6','7','8','9'] for i in range(int(N)): L = list(input().split()) if 'NO' in L: nList.extend(L) else: yList.extend(L) for n in nList: if n in r: r.remove(n) if len(r) == 1: print(r[0]) else: wList = [x for x in set(r) if yList.count(x) > 1] for w in wList: if w in r: print(w)