結果

問題 No.24 数当てゲーム
ユーザー supepepesupepepe
提出日時 2019-01-25 17:43:11
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 1,107 bytes
コンパイル時間 94 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 11,008 KB
最終ジャッジ日時 2024-09-16 04:49:16
合計ジャッジ時間 1,125 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,880 KB
testcase_01 AC 29 ms
10,880 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 29 ms
10,880 KB
testcase_05 WA -
testcase_06 AC 29 ms
10,752 KB
testcase_07 AC 29 ms
10,752 KB
testcase_08 AC 30 ms
10,752 KB
testcase_09 AC 29 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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]
    if not res:
        diff = set(no_list) ^ set(number)
        diff2 = set(list(diff)) & set(yes_list)
        answer = list(diff2)
        print(answer[0])
    else:
        diff = set(no_list) ^ set(number)
        diff2 = set(list(diff)) & set(res)
        print(diff2)
        answer = list(diff2)
        print(answer[0])
0