結果

問題 No.494 yukicoder
ユーザー YOSHIYOSHI
提出日時 2021-03-17 21:17:38
言語 Java21
(openjdk 21)
結果
AC  
実行時間 51 ms / 2,000 ms
コード長 343 bytes
コンパイル時間 3,473 ms
コンパイル使用メモリ 74,180 KB
実行使用メモリ 37,312 KB
最終ジャッジ日時 2024-11-15 16:02:37
合計ジャッジ時間 3,721 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
37,108 KB
testcase_01 AC 46 ms
37,312 KB
testcase_02 AC 46 ms
37,220 KB
testcase_03 AC 47 ms
37,256 KB
testcase_04 AC 47 ms
37,168 KB
testcase_05 AC 46 ms
37,128 KB
testcase_06 AC 46 ms
36,828 KB
testcase_07 AC 51 ms
37,008 KB
testcase_08 AC 45 ms
37,272 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class No00000494_Main2 {
	static BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
	public static void main(String[] args) throws IOException {
		System.out.println("yukicoder".charAt(br.readLine().indexOf("?")));
	}
}
0