結果
| 問題 | No.3155 Same Birthday |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2025-08-07 08:47:33 |
| 言語 | Python3 (3.14.3 + numpy 2.4.4 + scipy 1.17.1) |
| 結果 |
AC
|
| 実行時間 | 538 ms / 2,000 ms |
| + 141µs | |
| コード長 | 187 bytes |
| 記録 | |
| コンパイル時間 | 306 ms |
| コンパイル使用メモリ | 21,540 KB |
| 実行使用メモリ | 38,480 KB |
| 最終ジャッジ日時 | 2026-07-13 20:32:02 |
| 合計ジャッジ時間 | 20,161 ms |
|
ジャッジサーバーID (参考情報) |
judge3_0 / judge2_1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 49 |
ソースコード
n=int(input())
s=[]
for i in range(n):
a,b=map(int,input().split())
temp=str(a)+"/"+str(b)
s.append(temp)
ss=set(s)
if len(ss)==n:
print("No")
else:
print("Yes")