結果
| 問題 | No.730 アルファベットパネル |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2023-06-06 21:44:23 |
| 言語 | PyPy3 (7.3.17) |
| 結果 |
RE
|
| 実行時間 | - |
| コード長 | 111 bytes |
| 記録 | |
| コンパイル時間 | 239 ms |
| コンパイル使用メモリ | 84,864 KB |
| 実行使用メモリ | 65,536 KB |
| 最終ジャッジ日時 | 2026-06-03 04:20:20 |
| 合計ジャッジ時間 | 1,498 ms |
|
ジャッジサーバーID (参考情報) |
judge3_0 / judge1_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | RE * 2 |
| other | RE * 8 |
ソースコード
from collections import Counter
C = Counter(input())
if max(c.values()) > 1:
print("NO")
else:
print("YES")