結果

問題 No.908 うしたぷにきあくん文字列
ユーザー tentententen
提出日時 2020-11-12 18:13:44
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 454 bytes
コンパイル時間 2,366 ms
コンパイル使用メモリ 73,588 KB
実行使用メモリ 41,500 KB
最終ジャッジ日時 2024-07-22 19:41:51
合計ジャッジ時間 5,993 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 125 ms
40,924 KB
testcase_01 AC 130 ms
41,260 KB
testcase_02 AC 128 ms
40,940 KB
testcase_03 AC 137 ms
41,100 KB
testcase_04 AC 136 ms
41,260 KB
testcase_05 AC 128 ms
40,940 KB
testcase_06 WA -
testcase_07 AC 128 ms
41,196 KB
testcase_08 AC 139 ms
41,312 KB
testcase_09 WA -
testcase_10 AC 131 ms
41,140 KB
testcase_11 AC 131 ms
41,032 KB
testcase_12 AC 130 ms
41,340 KB
testcase_13 AC 130 ms
41,176 KB
testcase_14 WA -
testcase_15 AC 129 ms
40,984 KB
testcase_16 AC 132 ms
40,980 KB
testcase_17 AC 131 ms
40,760 KB
testcase_18 AC 129 ms
41,500 KB
testcase_19 AC 135 ms
41,168 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

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