結果

問題 No.908 うしたぷにきあくん文字列
ユーザー kurehakureha
提出日時 2024-04-16 19:42:20
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 96 bytes
コンパイル時間 245 ms
コンパイル使用メモリ 82,380 KB
実行使用メモリ 53,336 KB
最終ジャッジ日時 2024-04-16 19:42:24
合計ジャッジ時間 1,912 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,880 KB
testcase_01 AC 36 ms
53,284 KB
testcase_02 AC 35 ms
52,200 KB
testcase_03 AC 35 ms
52,856 KB
testcase_04 AC 36 ms
51,940 KB
testcase_05 AC 36 ms
51,884 KB
testcase_06 WA -
testcase_07 AC 36 ms
53,336 KB
testcase_08 AC 39 ms
52,088 KB
testcase_09 WA -
testcase_10 AC 36 ms
51,872 KB
testcase_11 AC 36 ms
52,248 KB
testcase_12 AC 36 ms
52,080 KB
testcase_13 AC 36 ms
52,280 KB
testcase_14 WA -
testcase_15 AC 37 ms
51,756 KB
testcase_16 AC 36 ms
51,876 KB
testcase_17 AC 40 ms
52,552 KB
testcase_18 AC 37 ms
52,276 KB
testcase_19 AC 36 ms
52,740 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

s = input()
ans = "Yes"
n = len(s)
for i in range(1,n,2): 
  if s[i] != ' ': ans="No"
print(ans)
0