結果

問題 No.908 うしたぷにきあくん文字列
ユーザー Beat7501Beat7501
提出日時 2019-10-25 19:20:40
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 443 bytes
コンパイル時間 2,597 ms
コンパイル使用メモリ 75,360 KB
実行使用メモリ 54,304 KB
最終ジャッジ日時 2024-07-21 16:17:18
合計ジャッジ時間 5,271 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 114 ms
54,104 KB
testcase_01 AC 119 ms
53,900 KB
testcase_02 AC 116 ms
53,928 KB
testcase_03 AC 118 ms
54,156 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 109 ms
52,792 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 111 ms
53,052 KB
testcase_11 AC 118 ms
54,216 KB
testcase_12 WA -
testcase_13 AC 118 ms
54,112 KB
testcase_14 WA -
testcase_15 AC 115 ms
53,900 KB
testcase_16 WA -
testcase_17 AC 114 ms
53,980 KB
testcase_18 WA -
testcase_19 AC 117 ms
53,948 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

class Main1{
	public static void main(String args[]){
		Scanner sc = new Scanner(System.in);
		String s = sc.next();
		boolean flag = true;
		for(int i = 0; i < s.length(); i++){
			if(i%2 == 0){
				if(!(s.charAt(i)>=97&&s.charAt(i)<=122)){
					flag = false;
					break;
				}
			}else{
				if(!(s.substring(i,i+1).equals(" "))){
					flag = false;
					break;
				}
			}
		}
		System.out.println(flag?"Yes":"No");
	}
}
0