結果

問題 No.494 yukicoder
ユーザー kohaku_kohakukohaku_kohaku
提出日時 2017-03-29 01:50:11
言語 Java21
(openjdk 21)
結果
AC  
実行時間 108 ms / 2,000 ms
コード長 381 bytes
コンパイル時間 1,669 ms
コンパイル使用メモリ 74,268 KB
実行使用メモリ 41,500 KB
最終ジャッジ日時 2024-07-06 13:33:39
合計ジャッジ時間 3,116 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 89 ms
39,916 KB
testcase_01 AC 93 ms
40,648 KB
testcase_02 AC 93 ms
40,624 KB
testcase_03 AC 92 ms
40,420 KB
testcase_04 AC 101 ms
41,288 KB
testcase_05 AC 100 ms
41,316 KB
testcase_06 AC 105 ms
41,264 KB
testcase_07 AC 105 ms
40,916 KB
testcase_08 AC 108 ms
41,500 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

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