結果
問題 |
No.938 賢人を探せ
|
ユーザー |
![]() |
提出日時 | 2020-12-26 21:15:31 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
TLE
|
実行時間 | - |
コード長 | 150 bytes |
コンパイル時間 | 101 ms |
コンパイル使用メモリ | 12,672 KB |
実行使用メモリ | 29,760 KB |
最終ジャッジ日時 | 2024-09-25 01:23:43 |
合計ジャッジ時間 | 6,489 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | -- * 2 |
other | TLE * 1 -- * 20 |
ソースコード
N=int(input()) p=[input().split() for _ in range(N)] pa=[a[0] for a in p] pb=[a[1] for a in p] pc=[b for b in pb if b not in pa] for a in pc: print(a)