結果
| 問題 | No.938 賢人を探せ |
| コンテスト | |
| ユーザー |
Salmonize
|
| 提出日時 | 2020-04-17 21:40:58 |
| 言語 | Python3 (3.14.3 + numpy 2.4.4 + scipy 1.17.1) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 156 bytes |
| 記録 | |
| コンパイル時間 | 523 ms |
| コンパイル使用メモリ | 20,824 KB |
| 実行使用メモリ | 21,048 KB |
| 最終ジャッジ日時 | 2026-04-19 13:22:48 |
| 合計ジャッジ時間 | 6,206 ms |
|
ジャッジサーバーID (参考情報) |
judge2_1 / judge3_1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 6 WA * 15 |
ソースコード
n = int(input())
s = set()
l = set()
for _ in range(n):
a, b = input().split()
s.add(a)
l.add(b)
for x in l:
if x not in s:
print(x)
Salmonize