結果

問題 No.3155 Same Birthday
ユーザー 👑 loop0919
提出日時 2025-05-23 19:44:59
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 127 bytes
コンパイル時間 419 ms
コンパイル使用メモリ 82,512 KB
実行使用メモリ 117,112 KB
最終ジャッジ日時 2025-05-23 19:45:13
合計ジャッジ時間 12,724 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample RE * 2
other RE * 49
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
birthays = {tuple(map(int, input().split())) for _ in range(N)}

print("Yes" if len(birthdays) < N else "No")
0