結果
| 問題 | No.908 うしたぷにきあくん文字列 |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2021-04-18 00:58:38 |
| 言語 | Python3 (3.14.7 + numpy 2.5.2 + scipy 1.18.0) |
| 結果 |
RE
|
| 実行時間 | - |
| コード長 | 110 bytes |
| 記録 | |
| コンパイル時間 | 279 ms |
| コンパイル使用メモリ | 21,408 KB |
| 実行使用メモリ | 20,808 KB |
| 最終ジャッジ日時 | 2026-08-06 00:37:24 |
| 合計ジャッジ時間 | 6,464 ms |
|
ジャッジサーバーID (参考情報) |
judge2_0 / judge1_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | RE * 2 |
| other | RE * 18 |
ソースコード
s = input()
f1 = all(s[1::2]==" ")
f2 = all(s[0::2]!=" ")
if f1 and f2:
print("Yes")
else:
print("No")