結果

問題 No.494 yukicoder
ユーザー FVRChanFVRChan
提出日時 2017-09-29 12:34:49
言語 Java21
(openjdk 21)
結果
AC  
実行時間 116 ms / 2,000 ms
コード長 255 bytes
コンパイル時間 1,715 ms
コンパイル使用メモリ 73,916 KB
実行使用メモリ 41,272 KB
最終ジャッジ日時 2024-04-27 16:17:53
合計ジャッジ時間 3,216 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 107 ms
40,844 KB
testcase_01 AC 91 ms
39,528 KB
testcase_02 AC 94 ms
40,004 KB
testcase_03 AC 109 ms
41,112 KB
testcase_04 AC 116 ms
41,272 KB
testcase_05 AC 98 ms
39,844 KB
testcase_06 AC 94 ms
40,240 KB
testcase_07 AC 113 ms
40,856 KB
testcase_08 AC 93 ms
39,328 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
public class Main{
	private static Scanner sc=new Scanner(System.in);
	public static void main(String args[])throws Exception{
		String s=sc.nextLine();
		String t="yukicoder";
		System.out.println(t.charAt(s.indexOf("?")));
	}
}
0