結果
| 問題 |
No.2778 Is there Same letter?
|
| コンテスト | |
| ユーザー |
ぶりんがー@みゅーじしゃん
|
| 提出日時 | 2024-07-08 17:52:35 |
| 言語 | PyPy3 (7.3.15) |
| 結果 |
RE
|
| 実行時間 | - |
| コード長 | 77 bytes |
| コンパイル時間 | 269 ms |
| コンパイル使用メモリ | 82,176 KB |
| 実行使用メモリ | 65,152 KB |
| 最終ジャッジ日時 | 2024-07-08 17:52:38 |
| 合計ジャッジ時間 | 2,356 ms |
|
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | RE * 3 |
| other | RE * 12 |
ソースコード
n=int(input())
s=input()
if len(s.set())==n:
print("Yes")
else:
print("No")
ぶりんがー@みゅーじしゃん