結果
| 問題 | No.3155 Same Birthday |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2025-05-23 19:01:00 |
| 言語 | PyPy3 (7.3.17) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 145 bytes |
| 記録 | |
| コンパイル時間 | 239 ms |
| コンパイル使用メモリ | 95,596 KB |
| 実行使用メモリ | 87,040 KB |
| 最終ジャッジ日時 | 2026-07-10 23:00:49 |
| 合計ジャッジ時間 | 8,061 ms |
|
ジャッジサーバーID (参考情報) |
judge2_1 / judge1_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 33 WA * 16 |
ソースコード
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")