結果
問題 | No.24 数当てゲーム |
ユーザー | R N |
提出日時 | 2020-08-04 13:59:43 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 819 bytes |
コンパイル時間 | 116 ms |
コンパイル使用メモリ | 12,672 KB |
実行使用メモリ | 10,880 KB |
最終ジャッジ日時 | 2024-09-14 14:56:13 |
合計ジャッジ時間 | 1,023 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 30 ms
10,624 KB |
testcase_01 | AC | 30 ms
10,624 KB |
testcase_02 | AC | 30 ms
10,624 KB |
testcase_03 | WA | - |
testcase_04 | RE | - |
testcase_05 | AC | 30 ms
10,624 KB |
testcase_06 | RE | - |
testcase_07 | AC | 30 ms
10,752 KB |
testcase_08 | RE | - |
testcase_09 | RE | - |
ソースコード
# coding:utf-8 n = int(input()) ans_list = [str(i) for i in range(10)] taro_list = [] yes_list = [] for i in range(n): taro_list.append(input().split()) for j in range(n): if taro_list[j][4] == 'NO': for k in range(4): try: ans_list[ans_list.index(taro_list[j][k])] = '-' except ValueError: continue elif taro_list[j][4] == 'YES': for k in range(4): yes_list.append(taro_list[j][k]) if ans_list.count('-') == 9: ans = [i for i in ans_list if i != '-'] print(ans[0]) elif ans_list.count('-') == 0: ans = [i for i in yes_list if yes_list.count(i) == 2] print(ans[0]) else: ans_choice = [i for i in ans_list if i != '-'] ans = [i for i in ans_choice if yes_list.count(i) == 2] print(ans[0])