結果

問題 No.908 うしたぷにきあくん文字列
ユーザー Schnee
提出日時 2019-10-26 16:20:07
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 31 ms / 2,000 ms
コード長 185 bytes
コンパイル時間 130 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 10,624 KB
最終ジャッジ日時 2024-09-14 12:17:19
合計ジャッジ時間 1,609 ms
ジャッジサーバーID
(参考情報)
judge6 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 18
権限があれば一括ダウンロードができます

ソースコード

diff #

st = list(map(ord,list(input())))
if set([32]) != set(st[1::2]):
    print("No")
else:
    if min(st[::2]) < 97 or 122 < max(st[::2]):
        print("No")
    else:
        print("Yes")
0