結果

問題 No.908 うしたぷにきあくん文字列
ユーザー ks2mks2m
提出日時 2019-10-18 21:23:18
言語 Java21
(openjdk 21)
結果
AC  
実行時間 57 ms / 2,000 ms
コード長 541 bytes
コンパイル時間 2,646 ms
コンパイル使用メモリ 74,492 KB
実行使用メモリ 50,396 KB
最終ジャッジ日時 2024-06-25 14:46:41
合計ジャッジ時間 3,937 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 55 ms
50,324 KB
testcase_01 AC 55 ms
49,888 KB
testcase_02 AC 55 ms
50,288 KB
testcase_03 AC 55 ms
50,232 KB
testcase_04 AC 55 ms
50,088 KB
testcase_05 AC 54 ms
50,080 KB
testcase_06 AC 54 ms
50,016 KB
testcase_07 AC 53 ms
50,084 KB
testcase_08 AC 55 ms
50,224 KB
testcase_09 AC 56 ms
50,284 KB
testcase_10 AC 55 ms
50,396 KB
testcase_11 AC 56 ms
50,260 KB
testcase_12 AC 55 ms
50,016 KB
testcase_13 AC 56 ms
49,764 KB
testcase_14 AC 57 ms
50,340 KB
testcase_15 AC 55 ms
49,752 KB
testcase_16 AC 53 ms
49,896 KB
testcase_17 AC 55 ms
50,152 KB
testcase_18 AC 55 ms
50,056 KB
testcase_19 AC 54 ms
49,900 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.InputStreamReader;

public class Main {
	public static void main(String[] args) throws Exception {
		BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
		String s = br.readLine();
		br.close();

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