結果

問題 No.494 yukicoder
ユーザー Tsukasa_TypeTsukasa_Type
提出日時 2018-02-10 21:46:32
言語 Java21
(openjdk 21)
結果
AC  
実行時間 113 ms / 2,000 ms
コード長 312 bytes
コンパイル時間 1,724 ms
コンパイル使用メモリ 74,484 KB
実行使用メモリ 41,280 KB
最終ジャッジ日時 2024-04-24 02:06:46
合計ジャッジ時間 3,186 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 103 ms
40,984 KB
testcase_01 AC 98 ms
40,156 KB
testcase_02 AC 103 ms
41,144 KB
testcase_03 AC 92 ms
39,692 KB
testcase_04 AC 95 ms
40,028 KB
testcase_05 AC 110 ms
40,928 KB
testcase_06 AC 113 ms
41,280 KB
testcase_07 AC 93 ms
39,952 KB
testcase_08 AC 105 ms
40,880 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
	static Scanner sc = new Scanner(System.in);
	public static void main(String[] args) {
		String s = sc.next();
		String[] ar = {"y","u","k","i","c","o","d","e","r"};
		for (int i=0; i<ar.length; i++) {
			if (s.charAt(i)=='?') {System.out.println(ar[i]); break;}
		}
	}
}
0