結果
| 問題 | No.3155 Same Birthday |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2026-03-31 13:06:20 |
| 言語 | Python3 (3.14.3 + numpy 2.4.4 + scipy 1.17.1) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 153 bytes |
| 記録 | |
| コンパイル時間 | 331 ms |
| コンパイル使用メモリ | 20,952 KB |
| 実行使用メモリ | 50,676 KB |
| 最終ジャッジ日時 | 2026-03-31 13:06:59 |
| 合計ジャッジ時間 | 21,362 ms |
|
ジャッジサーバーID (参考情報) |
judge2_1 / judge1_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | WA * 2 |
| other | WA * 49 |
ソースコード
n=int(input())
s=set()
for i in range(n):
a,b=map(int, input().split())
s.add((a,b))
print(s)
if len(s)<n:
print('Yes')
else:
print('No')