結果

問題 No.908 うしたぷにきあくん文字列
ユーザー Hoboteru4484Hoboteru4484
提出日時 2019-12-01 00:58:29
言語 Java21
(openjdk 21)
結果
AC  
実行時間 60 ms / 2,000 ms
コード長 568 bytes
コンパイル時間 3,269 ms
コンパイル使用メモリ 74,488 KB
実行使用メモリ 50,340 KB
最終ジャッジ日時 2024-05-01 03:29:12
合計ジャッジ時間 5,245 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 57 ms
50,184 KB
testcase_01 AC 56 ms
50,292 KB
testcase_02 AC 56 ms
50,288 KB
testcase_03 AC 55 ms
50,300 KB
testcase_04 AC 56 ms
49,916 KB
testcase_05 AC 54 ms
49,908 KB
testcase_06 AC 59 ms
49,900 KB
testcase_07 AC 56 ms
50,284 KB
testcase_08 AC 58 ms
50,288 KB
testcase_09 AC 57 ms
50,224 KB
testcase_10 AC 56 ms
50,016 KB
testcase_11 AC 58 ms
49,916 KB
testcase_12 AC 56 ms
50,064 KB
testcase_13 AC 57 ms
50,196 KB
testcase_14 AC 58 ms
50,340 KB
testcase_15 AC 59 ms
50,168 KB
testcase_16 AC 60 ms
50,252 KB
testcase_17 AC 56 ms
50,304 KB
testcase_18 AC 56 ms
50,212 KB
testcase_19 AC 56 ms
50,256 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.InputStreamReader;
import java.io.IOException;

public class No908 {
  public static void main(String[] args) throws IOException{
    String inputValue = new BufferedReader(new InputStreamReader(System.in)).readLine();
    boolean strFlag = true;

    for(int i=0;i < inputValue.length();i++){

      if((i+1) % 2 == 0 && inputValue.charAt(i) != ' '
         || (i+1) % 2 != 0 && inputValue.charAt(i) == ' '){
          strFlag = false;
          break;
      }
    }
      System.out.println(strFlag ? "Yes":"No");
  }
}
0