結果
| 問題 | No.938 賢人を探せ |
| コンテスト | |
| ユーザー |
Salmonize
|
| 提出日時 | 2020-04-17 21:38:45 |
| 言語 | Python3 (3.14.3 + numpy 2.4.4 + scipy 1.17.1) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 160 bytes |
| 記録 | |
| コンパイル時間 | 421 ms |
| コンパイル使用メモリ | 20,700 KB |
| 実行使用メモリ | 18,776 KB |
| 最終ジャッジ日時 | 2026-04-19 13:17:47 |
| 合計ジャッジ時間 | 4,466 ms |
|
ジャッジサーバーID (参考情報) |
judge3_0 / judge2_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| 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