結果

問題 No.908 うしたぷにきあくん文字列
ユーザー d-yoshd-yosh
提出日時 2019-12-09 08:33:35
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 611 bytes
コンパイル時間 2,336 ms
コンパイル使用メモリ 74,708 KB
実行使用メモリ 41,708 KB
最終ジャッジ日時 2024-06-11 19:58:22
合計ジャッジ時間 6,059 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 128 ms
40,988 KB
testcase_01 AC 132 ms
40,888 KB
testcase_02 AC 130 ms
41,256 KB
testcase_03 AC 129 ms
40,872 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 132 ms
41,316 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 130 ms
40,860 KB
testcase_11 AC 129 ms
40,984 KB
testcase_12 WA -
testcase_13 AC 123 ms
40,952 KB
testcase_14 WA -
testcase_15 AC 130 ms
41,428 KB
testcase_16 WA -
testcase_17 AC 129 ms
41,300 KB
testcase_18 WA -
testcase_19 AC 128 ms
41,036 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        char[] chars = sc.next().toCharArray();

        for (int i = 0; i < chars.length; i++) {
            if(i % 2 == 0) {
                if(chars[i] == ' ') {
                    System.out.println("No");
                    return;
                }
            }else {
                if(chars[i] != ' ') {
                    System.out.println("No");
                    return;
                }
            }
        }
        System.out.println("Yes");
    }
}
0