結果

問題 No.908 うしたぷにきあくん文字列
ユーザー flippergoflippergo
提出日時 2020-12-28 10:53:59
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 35 ms / 2,000 ms
コード長 280 bytes
コンパイル時間 1,229 ms
コンパイル使用メモリ 82,256 KB
実行使用メモリ 53,148 KB
最終ジャッジ日時 2024-10-02 11:48:20
合計ジャッジ時間 2,145 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,948 KB
testcase_01 AC 32 ms
52,760 KB
testcase_02 AC 31 ms
52,432 KB
testcase_03 AC 33 ms
51,948 KB
testcase_04 AC 34 ms
52,652 KB
testcase_05 AC 35 ms
52,020 KB
testcase_06 AC 33 ms
51,628 KB
testcase_07 AC 34 ms
52,876 KB
testcase_08 AC 32 ms
52,860 KB
testcase_09 AC 32 ms
52,896 KB
testcase_10 AC 33 ms
52,336 KB
testcase_11 AC 33 ms
52,704 KB
testcase_12 AC 32 ms
52,644 KB
testcase_13 AC 32 ms
52,392 KB
testcase_14 AC 33 ms
51,904 KB
testcase_15 AC 34 ms
52,624 KB
testcase_16 AC 33 ms
53,148 KB
testcase_17 AC 32 ms
52,400 KB
testcase_18 AC 33 ms
52,216 KB
testcase_19 AC 32 ms
52,440 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

A = set([chr(i) for i in range(97,123)])
S = input()
flag = "Yes"
for i in range(len(S)):
    if i%2==0:
        if S[i] in A:
            continue
        flag = "No"
        break
    else:
        if S[i]==" ":
            continue
        flag = "No"
        break
print(flag)
0