結果

問題 No.24 数当てゲーム
ユーザー ノットカワズノットカワズ
提出日時 2017-02-26 06:05:27
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 314 bytes
コンパイル時間 133 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 10,880 KB
最終ジャッジ日時 2024-06-11 16:08:25
合計ジャッジ時間 883 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

# -*- coding: utf-8 -*-


numbers = {x for x in range(10)}
N = int(input())
for i in range(N):
    n1, n2, n3, n4, flag = input().split()
    if flag == 'YES':
        numbers = numbers & {int(n1), int(n2), int(n3), int(n4)}
    else:
        numbers = numbers - {int(n1), int(n2), int(n3), int(n4)}
print(numbers)
0