結果
| 問題 | No.3155 Same Birthday |
| コンテスト | |
| ユーザー |
👑 |
| 提出日時 | 2025-05-23 19:44:59 |
| 言語 | PyPy3 (7.3.17) |
| 結果 |
RE
|
| 実行時間 | - |
| コード長 | 127 bytes |
| 記録 | |
| コンパイル時間 | 238 ms |
| コンパイル使用メモリ | 95,848 KB |
| 実行使用メモリ | 127,608 KB |
| 最終ジャッジ日時 | 2026-07-10 23:41:22 |
| 合計ジャッジ時間 | 16,248 ms |
|
ジャッジサーバーID (参考情報) |
judge2_0 / judge1_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | RE * 2 |
| other | RE * 49 |
ソースコード
N = int(input())
birthays = {tuple(map(int, input().split())) for _ in range(N)}
print("Yes" if len(birthdays) < N else "No")