結果

問題 No.494 yukicoder
ユーザー あsdfあsdf
提出日時 2017-04-01 22:45:24
言語 Java21
(openjdk 21)
結果
AC  
実行時間 119 ms / 2,000 ms
コード長 344 bytes
コンパイル時間 2,274 ms
コンパイル使用メモリ 73,968 KB
実行使用メモリ 41,244 KB
最終ジャッジ日時 2024-07-07 19:15:10
合計ジャッジ時間 3,588 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 109 ms
40,936 KB
testcase_01 AC 110 ms
41,192 KB
testcase_02 AC 113 ms
41,244 KB
testcase_03 AC 116 ms
41,040 KB
testcase_04 AC 114 ms
41,092 KB
testcase_05 AC 103 ms
39,800 KB
testcase_06 AC 114 ms
40,812 KB
testcase_07 AC 117 ms
41,104 KB
testcase_08 AC 119 ms
40,980 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
  public static void main(String[] args){
    String mozi = "yukicoder";
    Scanner cs = new Scanner(System.in);
    String a = cs.next();
    int i = 0;
    while(true){
      if(mozi.charAt(i) != a.charAt(i)){
        System.out.println(mozi.charAt(i));
        break;
      }
      i++;
    }
  }
}
0