結果

問題 No.908 うしたぷにきあくん文字列
ユーザー Hoboteru4484Hoboteru4484
提出日時 2019-12-01 00:44:14
言語 Java21
(openjdk 21)
結果
AC  
実行時間 53 ms / 2,000 ms
コード長 806 bytes
コンパイル時間 3,872 ms
コンパイル使用メモリ 74,764 KB
実行使用メモリ 37,024 KB
最終ジャッジ日時 2024-11-21 03:47:07
合計ジャッジ時間 5,014 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 52 ms
37,024 KB
testcase_01 AC 51 ms
36,756 KB
testcase_02 AC 53 ms
36,360 KB
testcase_03 AC 52 ms
36,712 KB
testcase_04 AC 52 ms
36,396 KB
testcase_05 AC 52 ms
36,908 KB
testcase_06 AC 52 ms
36,804 KB
testcase_07 AC 52 ms
36,392 KB
testcase_08 AC 52 ms
36,636 KB
testcase_09 AC 51 ms
36,948 KB
testcase_10 AC 52 ms
36,940 KB
testcase_11 AC 52 ms
37,008 KB
testcase_12 AC 52 ms
36,912 KB
testcase_13 AC 52 ms
36,940 KB
testcase_14 AC 52 ms
36,888 KB
testcase_15 AC 52 ms
36,680 KB
testcase_16 AC 52 ms
36,940 KB
testcase_17 AC 53 ms
36,960 KB
testcase_18 AC 52 ms
36,560 KB
testcase_19 AC 51 ms
36,704 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
import java.lang.Math;
import java.io.BufferedReader;
import java.io.InputStreamReader;
import java.io.IOException;

public class No908 {
  public static void main(String[] args) throws IOException{
    BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
    String inputValue = br.readLine();
    char[] target = new char[inputValue.length()];

    boolean strFlag = true;
    int comparisonCode = (int)' ';

    for(int i=0;i < inputValue.length();i++){
      target[i] = inputValue.charAt(i);
      int charCode = (int)target[i];
      if((i+1) % 2 == 0 && charCode != comparisonCode
         || (i+1) % 2 != 0 && charCode == comparisonCode){
          strFlag = false;
          break;
      }
    }
      System.out.println(strFlag ? "Yes":"No");
  }
}
0