結果
問題 | No.908 うしたぷにきあくん文字列 |
ユーザー |
![]() |
提出日時 | 2019-10-21 22:24:02 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 37 ms / 2,000 ms |
コード長 | 198 bytes |
コンパイル時間 | 137 ms |
コンパイル使用メモリ | 82,312 KB |
実行使用メモリ | 52,224 KB |
最終ジャッジ日時 | 2024-07-02 17:51:49 |
合計ジャッジ時間 | 1,453 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 2 |
other | AC * 18 |
ソースコード
s = input()for i in range(len(s)):if i%2 == 0 and s[i] == ' ':print('No')breakif i%2 == 1 and s[i] != ' ':print('No')breakelse:print('Yes')