結果
| 問題 | No.908 うしたぷにきあくん文字列 |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2021-04-18 00:59:44 |
| 言語 | Python3 (3.14.3 + numpy 2.4.2 + scipy 1.17.0) |
| 結果 |
AC
|
| 実行時間 | 94 ms / 2,000 ms |
| コード長 | 134 bytes |
| 記録 | |
| コンパイル時間 | 563 ms |
| コンパイル使用メモリ | 20,820 KB |
| 実行使用メモリ | 15,360 KB |
| 最終ジャッジ日時 | 2026-03-25 13:00:51 |
| 合計ジャッジ時間 | 2,960 ms |
|
ジャッジサーバーID (参考情報) |
judge3_0 / judge1_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 18 |
ソースコード
s = input()
f1 = all(si==" "for si in s[1::2])
f2 = all(si!=" "for si in s[0::2])
if f1 and f2:
print("Yes")
else:
print("No")