結果

問題 No.494 yukicoder
ユーザー YamaKasaYamaKasa
提出日時 2018-05-06 17:26:38
言語 Java21
(openjdk 21)
結果
AC  
実行時間 127 ms / 2,000 ms
コード長 394 bytes
コンパイル時間 1,983 ms
コンパイル使用メモリ 77,520 KB
実行使用メモリ 41,388 KB
最終ジャッジ日時 2024-06-28 02:10:30
合計ジャッジ時間 3,742 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 127 ms
41,264 KB
testcase_01 AC 124 ms
41,268 KB
testcase_02 AC 125 ms
41,196 KB
testcase_03 AC 124 ms
41,232 KB
testcase_04 AC 127 ms
41,124 KB
testcase_05 AC 122 ms
41,388 KB
testcase_06 AC 114 ms
39,900 KB
testcase_07 AC 126 ms
41,160 KB
testcase_08 AC 123 ms
41,296 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
	public static void main(String[] args) {
		Scanner scan = new Scanner(System.in);
		String S = scan.next();
		String s = "yukicoder";
		scan.close();
		int index = 0;
		for(int i = 0; i < S.length(); i++) {
			char c = S.charAt(i);
			if(c == '?') {
				index = i;
				break;
			}
		}
		char ans = s.charAt(index);
		System.out.println(ans);
	}
}
0