結果

問題 No.1592 Tenkei 90
ユーザー harapecoharapeco
提出日時 2022-03-29 11:08:08
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 144 bytes
コンパイル時間 313 ms
コンパイル使用メモリ 82,792 KB
実行使用メモリ 53,544 KB
最終ジャッジ日時 2024-04-25 13:29:15
合計ジャッジ時間 1,845 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,348 KB
testcase_01 AC 36 ms
52,248 KB
testcase_02 AC 36 ms
52,436 KB
testcase_03 AC 35 ms
53,160 KB
testcase_04 AC 35 ms
51,628 KB
testcase_05 WA -
testcase_06 AC 36 ms
52,304 KB
testcase_07 AC 36 ms
51,832 KB
testcase_08 AC 35 ms
53,544 KB
testcase_09 AC 35 ms
52,480 KB
testcase_10 AC 36 ms
52,432 KB
testcase_11 AC 37 ms
52,692 KB
testcase_12 AC 35 ms
51,956 KB
testcase_13 AC 36 ms
52,424 KB
testcase_14 AC 36 ms
52,240 KB
testcase_15 AC 35 ms
52,052 KB
testcase_16 AC 35 ms
52,968 KB
testcase_17 AC 36 ms
52,180 KB
testcase_18 AC 36 ms
52,628 KB
testcase_19 AC 37 ms
53,380 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

S = input()

for i in range(len(S)):
    if S[i] in 'kyoprotenkei90':
        continue
    else:
        print('No')
        exit()
print('Yes')
0