結果
問題 |
No.3155 Same Birthday
|
ユーザー |
|
提出日時 | 2025-07-24 10:19:26 |
言語 | PyPy3 (7.3.15) |
結果 |
TLE
|
実行時間 | - |
コード長 | 219 bytes |
コンパイル時間 | 485 ms |
コンパイル使用メモリ | 82,592 KB |
実行使用メモリ | 94,088 KB |
最終ジャッジ日時 | 2025-07-24 10:19:37 |
合計ジャッジ時間 | 10,115 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | -- * 2 |
other | TLE * 1 -- * 48 |
ソースコード
def f(ll): res=[] for x in ll: if x not in res: res.append(x) return res n=int(input()) l=[] for i in range(n): a,b=map(int,input().split()) l.append([a,b]) if len(f(l))==n: print('No') else: print('Yes')