結果

問題 No.908 うしたぷにきあくん文字列
ユーザー d-yoshd-yosh
提出日時 2019-12-09 08:36:06
言語 Java21
(openjdk 21)
結果
AC  
実行時間 118 ms / 2,000 ms
コード長 615 bytes
コンパイル時間 1,895 ms
コンパイル使用メモリ 74,644 KB
実行使用メモリ 54,308 KB
最終ジャッジ日時 2024-06-11 20:03:34
合計ジャッジ時間 4,758 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 110 ms
53,924 KB
testcase_01 AC 112 ms
53,916 KB
testcase_02 AC 99 ms
53,004 KB
testcase_03 AC 118 ms
54,056 KB
testcase_04 AC 113 ms
54,308 KB
testcase_05 AC 110 ms
54,188 KB
testcase_06 AC 107 ms
53,056 KB
testcase_07 AC 102 ms
53,048 KB
testcase_08 AC 111 ms
54,156 KB
testcase_09 AC 109 ms
53,764 KB
testcase_10 AC 112 ms
54,184 KB
testcase_11 AC 100 ms
52,896 KB
testcase_12 AC 101 ms
52,784 KB
testcase_13 AC 102 ms
52,768 KB
testcase_14 AC 107 ms
54,172 KB
testcase_15 AC 100 ms
53,176 KB
testcase_16 AC 108 ms
54,020 KB
testcase_17 AC 98 ms
52,752 KB
testcase_18 AC 93 ms
52,604 KB
testcase_19 AC 107 ms
53,928 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        char[] chars = sc.nextLine().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