結果

問題 No.908 うしたぷにきあくん文字列
ユーザー マサマサ
提出日時 2022-01-11 17:12:59
言語 Java21
(openjdk 21)
結果
AC  
実行時間 128 ms / 2,000 ms
コード長 508 bytes
コンパイル時間 2,266 ms
コンパイル使用メモリ 74,192 KB
実行使用メモリ 54,428 KB
最終ジャッジ日時 2024-11-14 11:40:47
合計ジャッジ時間 5,576 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 123 ms
53,944 KB
testcase_01 AC 126 ms
54,132 KB
testcase_02 AC 128 ms
54,428 KB
testcase_03 AC 126 ms
53,996 KB
testcase_04 AC 122 ms
54,072 KB
testcase_05 AC 111 ms
52,956 KB
testcase_06 AC 124 ms
54,072 KB
testcase_07 AC 127 ms
53,956 KB
testcase_08 AC 113 ms
52,852 KB
testcase_09 AC 123 ms
54,076 KB
testcase_10 AC 124 ms
53,972 KB
testcase_11 AC 126 ms
53,876 KB
testcase_12 AC 128 ms
53,732 KB
testcase_13 AC 124 ms
54,024 KB
testcase_14 AC 124 ms
54,008 KB
testcase_15 AC 126 ms
54,012 KB
testcase_16 AC 125 ms
53,724 KB
testcase_17 AC 125 ms
54,256 KB
testcase_18 AC 126 ms
54,116 KB
testcase_19 AC 126 ms
54,132 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
    String s = sc.nextLine();

		int i = 0;
    for ( ; i < s.length(); i++) {
    	String c = String.valueOf(s.charAt(i));
      if (i % 2 == 0) {
      	if (c.equals(" ")) {
					break;
				}
      }
			if (i % 2 == 1) {
				if (!(c.equals(" "))) {
					break;
				}
			}
    }

		if (i == s.length()) {
			System.out.println("Yes");
		} else {
			System.out.println("No");
		}

	}
}
0