結果
| 問題 | No.2778 Is there Same letter? |
| コンテスト | |
| ユーザー |
ぶりんがー@みゅーじしゃん
|
| 提出日時 | 2024-07-08 17:56:26 |
| 言語 | PyPy3 (7.3.17) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 76 bytes |
| 記録 | |
| コンパイル時間 | 179 ms |
| コンパイル使用メモリ | 85,248 KB |
| 実行使用メモリ | 51,840 KB |
| 最終ジャッジ日時 | 2026-03-30 08:35:53 |
| 合計ジャッジ時間 | 1,156 ms |
|
ジャッジサーバーID (参考情報) |
judge1_0 / judge3_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | WA * 3 |
| other | WA * 12 |
ソースコード
n=int(input())
s=set(input())
if len(s)==n:
print("Yes")
else:
print("No")
ぶりんがー@みゅーじしゃん