結果
問題 | No.494 yukicoder |
ユーザー | kazapyon27 |
提出日時 | 2017-07-06 01:31:44 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 45 ms / 2,000 ms |
コード長 | 495 bytes |
コンパイル時間 | 3,243 ms |
コンパイル使用メモリ | 74,432 KB |
実行使用メモリ | 37,152 KB |
最終ジャッジ日時 | 2024-10-05 20:23:30 |
合計ジャッジ時間 | 3,629 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 42 ms
36,892 KB |
testcase_01 | AC | 43 ms
37,152 KB |
testcase_02 | AC | 43 ms
36,768 KB |
testcase_03 | AC | 45 ms
36,556 KB |
testcase_04 | AC | 45 ms
37,028 KB |
testcase_05 | AC | 44 ms
36,528 KB |
testcase_06 | AC | 45 ms
36,780 KB |
testcase_07 | AC | 45 ms
37,100 KB |
testcase_08 | AC | 44 ms
37,120 KB |
ソースコード
/*No.494 yukicoder*/import java.io.*;public class No494 {public static void main(String[] args) {try(BufferedReader input =new BufferedReader(new InputStreamReader(System.in))){String Wrong =input.readLine();String Correct="yukicoder";for(int i=0;i<Correct.length();i++){if(Wrong.substring(i, i+1).equals(Correct.substring(i, i+1))==false){System.out.println(Correct.substring(i, i+1));break;}}}catch(Exception e){e.printStackTrace();}}}