結果

問題 No.908 うしたぷにきあくん文字列
ユーザー ABKZABKZ
提出日時 2021-08-01 13:41:02
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 37 ms / 2,000 ms
コード長 176 bytes
コンパイル時間 300 ms
コンパイル使用メモリ 81,844 KB
実行使用メモリ 53,980 KB
最終ジャッジ日時 2024-09-16 12:47:12
合計ジャッジ時間 1,881 ms
ジャッジサーバーID
(参考情報)
judge2 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,160 KB
testcase_01 AC 37 ms
53,980 KB
testcase_02 AC 37 ms
51,996 KB
testcase_03 AC 37 ms
52,128 KB
testcase_04 AC 37 ms
53,448 KB
testcase_05 AC 37 ms
53,220 KB
testcase_06 AC 37 ms
52,700 KB
testcase_07 AC 37 ms
53,336 KB
testcase_08 AC 36 ms
53,196 KB
testcase_09 AC 36 ms
52,220 KB
testcase_10 AC 37 ms
52,364 KB
testcase_11 AC 37 ms
53,408 KB
testcase_12 AC 37 ms
52,692 KB
testcase_13 AC 37 ms
52,680 KB
testcase_14 AC 37 ms
51,616 KB
testcase_15 AC 37 ms
52,428 KB
testcase_16 AC 37 ms
52,148 KB
testcase_17 AC 35 ms
52,952 KB
testcase_18 AC 36 ms
52,280 KB
testcase_19 AC 36 ms
53,296 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

S = input()

for i, x in enumerate(S):
    if (i % 2 == 0 and not x.islower() or
        i % 2 == 1 and not x == " "):
        print("No")
        break
else:
    print("Yes")
0