結果
| 問題 | No.938 賢人を探せ |
| コンテスト | |
| ユーザー |
masumasumath1
|
| 提出日時 | 2019-12-01 17:27:15 |
| 言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
| 結果 |
TLE
|
| 実行時間 | - |
| コード長 | 196 bytes |
| 記録 | |
| コンパイル時間 | 247 ms |
| コンパイル使用メモリ | 12,544 KB |
| 実行使用メモリ | 23,680 KB |
| 最終ジャッジ日時 | 2024-11-21 12:17:46 |
| 合計ジャッジ時間 | 49,237 ms |
|
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 1 WA * 1 |
| other | AC * 3 WA * 3 TLE * 15 |
ソースコード
N = int(input())
B = []
A = []
for _ in range(N):
b,a = input().split()
B.append(b)
A.append(a)
for b in B:
if b in A:
A.remove(b)
A = list(set(A))
for a in A:
print(a)
masumasumath1