結果
| 問題 |
No.26 シャッフルゲーム
|
| コンテスト | |
| ユーザー |
Schnee
|
| 提出日時 | 2019-10-26 13:36:21 |
| 言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
| 結果 |
RE
|
| 実行時間 | - |
| コード長 | 160 bytes |
| コンパイル時間 | 100 ms |
| コンパイル使用メモリ | 12,672 KB |
| 実行使用メモリ | 10,624 KB |
| 最終ジャッジ日時 | 2024-09-14 06:59:05 |
| 合計ジャッジ時間 | 974 ms |
|
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 2 RE * 8 |
ソースコード
pl = input().split()
time = int(input())
for _ in range(time):
rnd = input().split()
if pl[0] in rnd:
pl = set(rnd) ^ set(pl)
print(list(pl)[0])
Schnee