結果

問題 No.494 yukicoder
ユーザー 37zigen37zigen
提出日時 2017-03-24 22:33:46
言語 Java21
(openjdk 21)
結果
AC  
実行時間 111 ms / 2,000 ms
コード長 324 bytes
コンパイル時間 3,285 ms
コンパイル使用メモリ 74,476 KB
実行使用メモリ 41,196 KB
最終ジャッジ日時 2024-07-06 03:06:22
合計ジャッジ時間 6,189 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 111 ms
40,952 KB
testcase_01 AC 107 ms
40,760 KB
testcase_02 AC 101 ms
41,196 KB
testcase_03 AC 102 ms
40,964 KB
testcase_04 AC 106 ms
40,760 KB
testcase_05 AC 93 ms
40,048 KB
testcase_06 AC 103 ms
40,924 KB
testcase_07 AC 103 ms
40,976 KB
testcase_08 AC 94 ms
39,860 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
	public static void main(String[] args) {
		new Main().run();
	}

	void run() {
		Scanner sc=new Scanner(System.in);
		String in=sc.next();
		String s = "yukicoder";
		for(int i=0;i<s.length();++i){
			if(in.charAt(i)=='?'){
				System.out.println(s.charAt(i));
			}
		}
	}

}
0