結果

問題 No.494 yukicoder
ユーザー rabirabi
提出日時 2019-06-25 13:06:37
言語 Java21
(openjdk 21)
結果
AC  
実行時間 43 ms / 2,000 ms
コード長 388 bytes
コンパイル時間 3,009 ms
コンパイル使用メモリ 72,892 KB
実行使用メモリ 37,004 KB
最終ジャッジ日時 2024-06-22 23:49:11
合計ジャッジ時間 4,376 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
36,556 KB
testcase_01 AC 42 ms
36,560 KB
testcase_02 AC 43 ms
37,004 KB
testcase_03 AC 43 ms
36,792 KB
testcase_04 AC 42 ms
36,556 KB
testcase_05 AC 43 ms
36,700 KB
testcase_06 AC 43 ms
36,428 KB
testcase_07 AC 42 ms
36,924 KB
testcase_08 AC 42 ms
36,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;

public class Tester {

	public static void main(String[] args) throws IOException{
		BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
		String base = "yukicoder";
		String str = br.readLine();
		int num = str.indexOf('?');
		System.out.println(base.charAt(num));
	}

}
0