結果

問題 No.494 yukicoder
ユーザー GrenacheGrenache
提出日時 2017-03-24 22:22:17
言語 Java21
(openjdk 21)
結果
AC  
実行時間 116 ms / 2,000 ms
コード長 705 bytes
コンパイル時間 2,977 ms
コンパイル使用メモリ 74,876 KB
実行使用メモリ 54,016 KB
最終ジャッジ日時 2024-07-06 02:23:42
合計ジャッジ時間 4,471 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 116 ms
54,000 KB
testcase_01 AC 105 ms
54,008 KB
testcase_02 AC 108 ms
54,016 KB
testcase_03 AC 109 ms
53,808 KB
testcase_04 AC 107 ms
53,928 KB
testcase_05 AC 100 ms
52,776 KB
testcase_06 AC 97 ms
52,648 KB
testcase_07 AC 103 ms
52,692 KB
testcase_08 AC 107 ms
53,684 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;


public class Main_yukicoder494 {

	private static Scanner sc;
	private static Printer pr;

	private static void solve() {
		char[] yukicoder = "yukicoder".toCharArray();
		char[] s = sc.next().toCharArray();
		int n = yukicoder.length;

		for (int i = 0; i < n; i++) {
			if (s[i] != yukicoder[i]) {
				pr.println(yukicoder[i]);
				break;
			}
		}
	}

	// ---------------------------------------------------
	public static void main(String[] args) {
		sc = new Scanner(System.in);
		pr = new Printer(System.out);

		solve();

		pr.close();
		sc.close();
	}

	private static class Printer extends PrintWriter {
		Printer(PrintStream out) {
			super(out);
		}
	}
}
0