結果
問題 | No.24 数当てゲーム |
ユーザー | supepepe |
提出日時 | 2019-01-25 17:37:55 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 900 bytes |
コンパイル時間 | 117 ms |
コンパイル使用メモリ | 12,544 KB |
実行使用メモリ | 10,880 KB |
最終ジャッジ日時 | 2024-09-16 04:49:15 |
合計ジャッジ時間 | 1,045 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 30 ms
10,624 KB |
testcase_01 | AC | 31 ms
10,496 KB |
testcase_02 | AC | 32 ms
10,752 KB |
testcase_03 | AC | 31 ms
10,624 KB |
testcase_04 | RE | - |
testcase_05 | AC | 30 ms
10,880 KB |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | RE | - |
ソースコード
n = int(input()) nlist = [input().split() for i in range(n)] number = ["0", "1", "2", "3", "4", "5", "6", "7", "8", "9"] no_list = [] yes_list = [] answer = "" for i in range(n): if nlist[i][4] == "NO": no_list.append(nlist[i][0]) no_list.append(nlist[i][1]) no_list.append(nlist[i][2]) no_list.append(nlist[i][3]) else: yes_list.append(nlist[i][0]) yes_list.append(nlist[i][1]) yes_list.append(nlist[i][2]) yes_list.append(nlist[i][3]) if not no_list: res = [e for e in set(yes_list) if yes_list.count(e) > 1] print(res[0]) elif not yes_list: diff = set(no_list) ^ set(number) answer = list(diff) print(answer[0]) else: res = [e for e in set(yes_list) if yes_list.count(e) > 1] diff = set(no_list) ^ set(number) diff2 = set(list(diff)) & set(res) answer = list(diff2) print(answer[0])