結果

問題 No.730 アルファベットパネル
ユーザー dangodango
提出日時 2023-06-06 21:44:33
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 95 ms / 2,000 ms
コード長 111 bytes
コンパイル時間 374 ms
コンパイル使用メモリ 86,956 KB
実行使用メモリ 71,940 KB
最終ジャッジ日時 2023-08-28 10:50:47
合計ジャッジ時間 2,089 ms
ジャッジサーバーID
(参考情報)
judge11 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 91 ms
71,888 KB
testcase_01 AC 93 ms
71,612 KB
testcase_02 AC 92 ms
71,580 KB
testcase_03 AC 92 ms
71,584 KB
testcase_04 AC 91 ms
71,688 KB
testcase_05 AC 93 ms
71,820 KB
testcase_06 AC 95 ms
71,824 KB
testcase_07 AC 92 ms
71,620 KB
testcase_08 AC 93 ms
71,616 KB
testcase_09 AC 92 ms
71,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import Counter
C = Counter(input())
if max(C.values()) > 1:
  print("NO")
else:
  print("YES")
0