結果

問題 No.494 yukicoder
ユーザー YukimotoPGYukimotoPG
提出日時 2019-02-13 16:36:53
言語 Java21
(openjdk 21)
結果
AC  
実行時間 124 ms / 2,000 ms
コード長 299 bytes
コンパイル時間 3,951 ms
コンパイル使用メモリ 73,972 KB
実行使用メモリ 54,180 KB
最終ジャッジ日時 2024-09-13 10:17:15
合計ジャッジ時間 3,873 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 124 ms
53,952 KB
testcase_01 AC 122 ms
54,084 KB
testcase_02 AC 124 ms
53,900 KB
testcase_03 AC 122 ms
54,020 KB
testcase_04 AC 123 ms
54,068 KB
testcase_05 AC 111 ms
52,864 KB
testcase_06 AC 123 ms
53,808 KB
testcase_07 AC 123 ms
54,180 KB
testcase_08 AC 123 ms
53,776 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

class Main {
	static Scanner sc = new Scanner(System.in);
	public static void main(String[] args) {
		
		String y = "yukicoder";
		String s = sc.next();
		
		for (int i=0; i<9; i++) {
			if (s.charAt(i) == '?') {
				System.out.println(y.charAt(i));
				return;
			}
		}
		
	}
}
0