結果

問題 No.1592 Tenkei 90
ユーザー 8989
提出日時 2022-02-12 02:01:10
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 94 ms / 1,000 ms
コード長 210 bytes
コンパイル時間 326 ms
コンパイル使用メモリ 87,220 KB
実行使用メモリ 71,624 KB
最終ジャッジ日時 2023-09-10 09:54:28
合計ジャッジ時間 3,562 ms
ジャッジサーバーID
(参考情報)
judge12 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 90 ms
71,620 KB
testcase_01 AC 90 ms
71,444 KB
testcase_02 AC 90 ms
71,416 KB
testcase_03 AC 94 ms
71,236 KB
testcase_04 AC 91 ms
71,556 KB
testcase_05 AC 91 ms
71,448 KB
testcase_06 AC 92 ms
71,624 KB
testcase_07 AC 92 ms
71,552 KB
testcase_08 AC 91 ms
71,484 KB
testcase_09 AC 90 ms
71,300 KB
testcase_10 AC 89 ms
71,588 KB
testcase_11 AC 91 ms
71,416 KB
testcase_12 AC 91 ms
71,412 KB
testcase_13 AC 92 ms
71,564 KB
testcase_14 AC 91 ms
71,556 KB
testcase_15 AC 91 ms
71,556 KB
testcase_16 AC 91 ms
71,484 KB
testcase_17 AC 90 ms
71,112 KB
testcase_18 AC 91 ms
71,444 KB
testcase_19 AC 90 ms
71,584 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

p = "kyoprotenkei90"
t = list(input())
from collections import Counter
m = Counter(t)
for i in p:
    if m[i] == 0:
        print("No")
        exit()
if len(p) == len(t):
    print("Yes")
else:
    print("No")
0