結果

問題 No.494 yukicoder
ユーザー lsinf26lsinf26
提出日時 2017-06-02 00:51:16
言語 Java21
(openjdk 21)
結果
AC  
実行時間 119 ms / 2,000 ms
コード長 477 bytes
コンパイル時間 2,147 ms
コンパイル使用メモリ 74,392 KB
実行使用メモリ 41,012 KB
最終ジャッジ日時 2024-09-21 21:44:11
合計ジャッジ時間 3,507 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 118 ms
41,012 KB
testcase_01 AC 119 ms
41,012 KB
testcase_02 AC 116 ms
40,912 KB
testcase_03 AC 101 ms
39,928 KB
testcase_04 AC 113 ms
39,740 KB
testcase_05 AC 115 ms
40,888 KB
testcase_06 AC 107 ms
40,300 KB
testcase_07 AC 114 ms
40,904 KB
testcase_08 AC 101 ms
39,868 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

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