結果

問題 No.730 アルファベットパネル
ユーザー nebukuro09nebukuro09
提出日時 2018-09-07 21:22:43
言語 Python2
(2.7.18)
結果
WA  
実行時間 -
コード長 127 bytes
コンパイル時間 488 ms
コンパイル使用メモリ 6,504 KB
実行使用メモリ 6,412 KB
最終ジャッジ日時 2023-08-19 12:20:09
合計ジャッジ時間 1,453 ms
ジャッジサーバーID
(参考情報)
judge15 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 13 ms
6,208 KB
testcase_01 AC 13 ms
6,412 KB
testcase_02 AC 13 ms
6,204 KB
testcase_03 AC 13 ms
6,308 KB
testcase_04 AC 13 ms
6,372 KB
testcase_05 AC 12 ms
6,368 KB
testcase_06 WA -
testcase_07 AC 13 ms
6,284 KB
testcase_08 AC 13 ms
6,284 KB
testcase_09 AC 13 ms
6,208 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import Counter

S = list(raw_input())
C = Counter(S)
print "YES" if any(c <= 1 for c in C.values()) else "NO"
0