結果
問題 | No.494 yukicoder |
ユーザー | Gchansanjou |
提出日時 | 2018-02-14 22:56:52 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 45 ms / 2,000 ms |
コード長 | 591 bytes |
コンパイル時間 | 2,643 ms |
コンパイル使用メモリ | 74,944 KB |
実行使用メモリ | 37,136 KB |
最終ジャッジ日時 | 2024-06-02 11:59:35 |
合計ジャッジ時間 | 3,673 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 44 ms
36,456 KB |
testcase_01 | AC | 44 ms
36,864 KB |
testcase_02 | AC | 44 ms
36,996 KB |
testcase_03 | AC | 45 ms
37,136 KB |
testcase_04 | AC | 44 ms
36,760 KB |
testcase_05 | AC | 45 ms
37,100 KB |
testcase_06 | AC | 44 ms
36,724 KB |
testcase_07 | AC | 44 ms
37,000 KB |
testcase_08 | AC | 43 ms
36,760 KB |
ソースコード
package yukiCoder; import java.io.BufferedReader; import java.io.IOException; import java.io.InputStreamReader; public class No00494 { public static void main(String[] args) { BufferedReader bufferedReader = new BufferedReader(new InputStreamReader(System.in)); final String YUKICODER = "yukicoder"; String input; try { input = bufferedReader.readLine(); int index = input.indexOf("?"); System.out.println(YUKICODER.charAt(index)); } catch (NumberFormatException | IOException e) { // TODO 自動生成された catch ブロック e.printStackTrace(); } } }