結果
| 問題 | No.3155 Same Birthday |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2025-05-27 11:50:05 |
| 言語 | PyPy3 (7.3.17) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 88 bytes |
| 記録 | |
| コンパイル時間 | 228 ms |
| コンパイル使用メモリ | 95,468 KB |
| 実行使用メモリ | 98,580 KB |
| 最終ジャッジ日時 | 2026-07-11 02:15:42 |
| 合計ジャッジ時間 | 9,482 ms |
|
ジャッジサーバーID (参考情報) |
judge3_0 / judge1_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | WA * 2 |
| other | WA * 49 |
ソースコード
n =int(input())
s = set(input() for i in range(n))
print('Yes' if n==len(s) else 'No')