結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 52 ms
50,096 KB
testcase_01 AC 50 ms
50,296 KB
testcase_02 AC 51 ms
50,204 KB
testcase_03 AC 51 ms
50,276 KB
testcase_04 AC 50 ms
50,096 KB
testcase_05 AC 51 ms
50,064 KB
testcase_06 AC 49 ms
50,100 KB
testcase_07 AC 50 ms
50,296 KB
testcase_08 AC 50 ms
50,132 KB
testcase_09 AC 49 ms
50,248 KB
testcase_10 AC 50 ms
50,240 KB
testcase_11 AC 51 ms
49,932 KB
testcase_12 AC 49 ms
50,188 KB
testcase_13 AC 50 ms
50,324 KB
testcase_14 AC 50 ms
50,284 KB
testcase_15 AC 50 ms
50,200 KB
testcase_16 AC 50 ms
50,132 KB
testcase_17 AC 50 ms
50,060 KB
testcase_18 AC 49 ms
50,204 KB
testcase_19 AC 49 ms
50,040 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