結果
問題 | No.908 うしたぷにきあくん文字列 |
ユーザー |
|
提出日時 | 2021-05-13 13:24:36 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 38 ms / 2,000 ms |
コード長 | 205 bytes |
コンパイル時間 | 337 ms |
コンパイル使用メモリ | 82,244 KB |
実行使用メモリ | 53,560 KB |
最終ジャッジ日時 | 2024-09-25 02:44:57 |
合計ジャッジ時間 | 1,824 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 2 |
other | AC * 18 |
ソースコード
S = input()for i in range(len(S)):if i%2 and S[i] != " ":print("No")breakelif i%2 == 0 and not S[i].islower():print("No")breakelse:print("Yes")