結果
| 問題 | No.938 賢人を探せ |
| コンテスト | |
| ユーザー |
Salmonize
|
| 提出日時 | 2020-04-17 21:38:45 |
| 言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 160 bytes |
| 記録 | |
| コンパイル時間 | 133 ms |
| コンパイル使用メモリ | 12,544 KB |
| 実行使用メモリ | 15,232 KB |
| 最終ジャッジ日時 | 2024-10-03 11:41:51 |
| 合計ジャッジ時間 | 2,444 ms |
|
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | WA * 2 |
| other | AC * 2 WA * 19 |
ソースコード
n = int(input())
s = set()
l = list()
for _ in range(n):
a, b = input().split()
s.add(a)
l.append(b)
for x in b:
if x not in s:
print(x)
Salmonize