結果

問題 No.494 yukicoder
ユーザー GoryudyumaGoryudyuma
提出日時 2017-03-25 08:52:40
言語 Java21
(openjdk 21)
結果
AC  
実行時間 115 ms / 2,000 ms
コード長 482 bytes
コンパイル時間 1,630 ms
コンパイル使用メモリ 74,216 KB
実行使用メモリ 55,840 KB
最終ジャッジ日時 2024-07-06 05:59:04
合計ジャッジ時間 3,173 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 101 ms
54,048 KB
testcase_01 AC 102 ms
53,604 KB
testcase_02 AC 93 ms
54,264 KB
testcase_03 AC 93 ms
52,928 KB
testcase_04 AC 102 ms
55,840 KB
testcase_05 AC 100 ms
53,968 KB
testcase_06 AC 115 ms
54,012 KB
testcase_07 AC 100 ms
53,992 KB
testcase_08 AC 102 ms
54,008 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

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