結果

問題 No.730 アルファベットパネル
ユーザー kohei2019kohei2019
提出日時 2022-03-27 10:27:00
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 45 ms / 2,000 ms
コード長 114 bytes
コンパイル時間 194 ms
コンパイル使用メモリ 82,292 KB
実行使用メモリ 54,960 KB
最終ジャッジ日時 2024-11-06 05:32:10
合計ジャッジ時間 1,334 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
54,960 KB
testcase_01 AC 43 ms
54,356 KB
testcase_02 AC 45 ms
54,580 KB
testcase_03 AC 42 ms
53,800 KB
testcase_04 AC 43 ms
54,508 KB
testcase_05 AC 41 ms
53,556 KB
testcase_06 AC 41 ms
54,004 KB
testcase_07 AC 45 ms
54,488 KB
testcase_08 AC 42 ms
54,860 KB
testcase_09 AC 41 ms
53,704 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import collections
S = list(input())
cnt = collections.Counter(S)
print('YES' if max(cnt.values()) <= 1 else 'NO')
0