結果

問題 No.908 うしたぷにきあくん文字列
ユーザー masa_ahemasa_ahe
提出日時 2020-03-13 19:38:08
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 393 bytes
コンパイル時間 2,590 ms
コンパイル使用メモリ 75,176 KB
実行使用メモリ 56,080 KB
最終ジャッジ日時 2024-11-22 15:40:48
合計ジャッジ時間 5,293 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 109 ms
40,104 KB
testcase_01 AC 123 ms
41,340 KB
testcase_02 AC 125 ms
41,484 KB
testcase_03 AC 122 ms
41,248 KB
testcase_04 AC 116 ms
41,316 KB
testcase_05 AC 122 ms
41,128 KB
testcase_06 WA -
testcase_07 AC 119 ms
40,820 KB
testcase_08 AC 122 ms
41,220 KB
testcase_09 WA -
testcase_10 AC 112 ms
40,144 KB
testcase_11 AC 116 ms
40,508 KB
testcase_12 AC 123 ms
41,264 KB
testcase_13 AC 114 ms
40,656 KB
testcase_14 WA -
testcase_15 AC 121 ms
41,440 KB
testcase_16 AC 122 ms
41,108 KB
testcase_17 AC 122 ms
41,268 KB
testcase_18 AC 120 ms
41,620 KB
testcase_19 AC 118 ms
41,192 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main{
	public static void main(String[] args){
		Scanner sc=new Scanner(System.in);
		String s=sc.nextLine();
		for(int i=0;i<s.length();i++){
			if(s.charAt(i)!=' '&&i%2==1){
				System.out.println("No");
				return;
			}
			if(Character.isUpperCase(s.charAt(i))&&i%2==0){
				System.out.println("No");
				return;
			}
		}
		System.out.println("Yes");
	}
}
0