結果

問題 No.494 yukicoder
ユーザー nomhiro1204nomhiro1204
提出日時 2017-04-04 21:01:25
言語 Java21
(openjdk 21)
結果
AC  
実行時間 103 ms / 2,000 ms
コード長 394 bytes
コンパイル時間 1,869 ms
コンパイル使用メモリ 74,736 KB
実行使用メモリ 41,220 KB
最終ジャッジ日時 2024-07-08 08:37:25
合計ジャッジ時間 3,310 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 92 ms
39,816 KB
testcase_01 AC 103 ms
41,076 KB
testcase_02 AC 103 ms
41,208 KB
testcase_03 AC 97 ms
41,220 KB
testcase_04 AC 97 ms
41,064 KB
testcase_05 AC 102 ms
40,792 KB
testcase_06 AC 92 ms
39,872 KB
testcase_07 AC 101 ms
41,096 KB
testcase_08 AC 102 ms
40,836 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
 
public class Main {
    public static void main(String args[] ) throws Exception {
        Scanner sc = new Scanner(System.in);
        String[] answer = {"y", "u", "k", "i", "c", "o", "d", "e", "r"};
        String input = sc.next();
		for (int i = 0 ; i < 9 ; i++) {
			if (input.indexOf(answer[i]) == -1) {
				System.out.println(answer[i]);
				break;
			}
		}
    }
}
0