結果

問題 No.908 うしたぷにきあくん文字列
ユーザー iwa_choco_168iwa_choco_168
提出日時 2019-12-02 09:07:35
言語 Java
(openjdk 23)
結果
AC  
実行時間 134 ms / 2,000 ms
コード長 481 bytes
コンパイル時間 2,358 ms
コンパイル使用メモリ 79,136 KB
実行使用メモリ 41,348 KB
最終ジャッジ日時 2024-11-23 15:42:06
合計ジャッジ時間 5,841 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 131 ms
41,340 KB
testcase_01 AC 130 ms
41,116 KB
testcase_02 AC 129 ms
41,168 KB
testcase_03 AC 132 ms
41,144 KB
testcase_04 AC 128 ms
41,024 KB
testcase_05 AC 128 ms
41,328 KB
testcase_06 AC 115 ms
40,248 KB
testcase_07 AC 134 ms
41,348 KB
testcase_08 AC 129 ms
41,024 KB
testcase_09 AC 128 ms
41,260 KB
testcase_10 AC 130 ms
41,340 KB
testcase_11 AC 132 ms
41,344 KB
testcase_12 AC 129 ms
41,128 KB
testcase_13 AC 116 ms
39,992 KB
testcase_14 AC 132 ms
41,176 KB
testcase_15 AC 129 ms
41,180 KB
testcase_16 AC 128 ms
41,216 KB
testcase_17 AC 128 ms
41,072 KB
testcase_18 AC 129 ms
40,996 KB
testcase_19 AC 129 ms
41,088 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        String str = sc.nextLine();
        boolean flag = true;
        char temp;
        for(int i = 0; i < str.length(); i++) {
            temp = str.charAt(i);
            if(i % 2 == 0 && temp == ' ') flag = false;
            else if(i % 2 == 1 && temp != ' ') flag = false;
        }
        System.out.println((flag)? "Yes" : "No");
    }
}
0