結果

問題 No.494 yukicoder
ユーザー akitsu818akitsu818
提出日時 2017-04-30 19:19:15
言語 Java21
(openjdk 21)
結果
AC  
実行時間 127 ms / 2,000 ms
コード長 336 bytes
コンパイル時間 2,159 ms
コンパイル使用メモリ 74,096 KB
実行使用メモリ 41,264 KB
最終ジャッジ日時 2024-09-13 23:55:21
合計ジャッジ時間 3,857 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 123 ms
41,156 KB
testcase_01 AC 111 ms
39,936 KB
testcase_02 AC 127 ms
41,088 KB
testcase_03 AC 126 ms
41,004 KB
testcase_04 AC 126 ms
40,956 KB
testcase_05 AC 123 ms
40,884 KB
testcase_06 AC 125 ms
41,108 KB
testcase_07 AC 127 ms
40,996 KB
testcase_08 AC 126 ms
41,264 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {

	public static void main(String args[]){

		Scanner cin = new Scanner(System.in);

		String line = cin.next();
		String answer = "yukicoder";
		cin.close();
		for(int i=0;i<line.length();i++){
			if(line.charAt(i)=='?'){
				System.out.println(answer.charAt(i));
				break;
			}
		}
	}
}
0