結果

問題 No.494 yukicoder
ユーザー Tsukasa_TypeTsukasa_Type
提出日時 2018-02-10 21:46:32
言語 Java21
(openjdk 21)
結果
AC  
実行時間 131 ms / 2,000 ms
コード長 312 bytes
コンパイル時間 2,227 ms
コンパイル使用メモリ 76,308 KB
実行使用メモリ 41,572 KB
最終ジャッジ日時 2024-11-06 08:46:52
合計ジャッジ時間 4,051 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 125 ms
41,296 KB
testcase_01 AC 127 ms
41,492 KB
testcase_02 AC 124 ms
41,572 KB
testcase_03 AC 127 ms
41,280 KB
testcase_04 AC 128 ms
41,140 KB
testcase_05 AC 131 ms
41,260 KB
testcase_06 AC 130 ms
41,188 KB
testcase_07 AC 128 ms
41,256 KB
testcase_08 AC 127 ms
41,076 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