結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 54 ms
49,960 KB
testcase_01 AC 52 ms
50,048 KB
testcase_02 AC 52 ms
49,912 KB
testcase_03 AC 54 ms
50,288 KB
testcase_04 AC 51 ms
50,272 KB
testcase_05 AC 53 ms
50,068 KB
testcase_06 AC 53 ms
50,044 KB
testcase_07 AC 52 ms
50,260 KB
testcase_08 AC 52 ms
50,248 KB
testcase_09 AC 51 ms
50,040 KB
testcase_10 AC 52 ms
50,300 KB
testcase_11 AC 52 ms
49,912 KB
testcase_12 AC 53 ms
50,192 KB
testcase_13 AC 53 ms
50,068 KB
testcase_14 AC 52 ms
50,064 KB
testcase_15 AC 54 ms
50,348 KB
testcase_16 AC 52 ms
50,244 KB
testcase_17 AC 52 ms
50,056 KB
testcase_18 AC 53 ms
50,024 KB
testcase_19 AC 51 ms
50,260 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