結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
53,380 KB
testcase_01 AC 33 ms
52,240 KB
testcase_02 AC 35 ms
52,088 KB
testcase_03 AC 36 ms
52,148 KB
testcase_04 AC 35 ms
52,576 KB
testcase_05 AC 35 ms
52,832 KB
testcase_06 WA -
testcase_07 AC 35 ms
53,404 KB
testcase_08 AC 37 ms
51,960 KB
testcase_09 WA -
testcase_10 AC 35 ms
52,808 KB
testcase_11 AC 35 ms
51,888 KB
testcase_12 AC 35 ms
52,376 KB
testcase_13 AC 35 ms
52,368 KB
testcase_14 WA -
testcase_15 AC 34 ms
52,748 KB
testcase_16 AC 32 ms
51,980 KB
testcase_17 AC 33 ms
52,364 KB
testcase_18 AC 32 ms
52,756 KB
testcase_19 AC 33 ms
51,952 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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