結果

問題 No.3155 Same Birthday
ユーザー はるはる
提出日時 2025-05-23 19:01:00
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 145 bytes
コンパイル時間 485 ms
コンパイル使用メモリ 82,596 KB
実行使用メモリ 79,028 KB
最終ジャッジ日時 2025-05-23 19:01:11
合計ジャッジ時間 8,283 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 33 WA * 16
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
s=set()
for i in range(N):
    A,B=map(int,input().split())
    s.add(A*32+B)
if len(s)==N:
    print("No")
else:
    print("Yes")
0