結果

問題 No.908 うしたぷにきあくん文字列
ユーザー htensaihtensai
提出日時 2019-11-11 08:09:10
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 514 bytes
コンパイル時間 2,396 ms
コンパイル使用メモリ 74,244 KB
実行使用メモリ 54,740 KB
最終ジャッジ日時 2024-09-15 05:07:24
合計ジャッジ時間 5,830 ms
ジャッジサーバーID
(参考情報)
judge6 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 129 ms
41,156 KB
testcase_01 AC 124 ms
41,140 KB
testcase_02 AC 124 ms
40,936 KB
testcase_03 AC 127 ms
40,924 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 125 ms
41,280 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 127 ms
41,224 KB
testcase_11 AC 125 ms
41,300 KB
testcase_12 WA -
testcase_13 AC 124 ms
41,216 KB
testcase_14 WA -
testcase_15 AC 125 ms
41,124 KB
testcase_16 WA -
testcase_17 AC 111 ms
40,272 KB
testcase_18 WA -
testcase_19 AC 124 ms
41,160 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
	public static void main (String[] args) {
		Scanner sc = new Scanner(System.in);
		char[] arr = sc.next().toCharArray();
		for (int i = 0; i < arr.length; i++) {
		    if (i % 2 == 0) {
		        if (arr[i] < 'a' || arr[i] > 'z') {
		            System.out.println("No");
		            return;
		        }
		    } else {
		        if (arr[i] != ' ') {
		            System.out.println("No");
		            return;
		        }
		    }
		}
		System.out.println("Yes");
	}
}
0