結果

問題 No.2298 yukicounter
ユーザー YGBKYGBK
提出日時 2023-05-15 19:30:05
言語 Java21
(openjdk 21)
結果
TLE  
実行時間 -
コード長 623 bytes
コンパイル時間 3,445 ms
コンパイル使用メモリ 74,832 KB
実行使用メモリ 50,016 KB
最終ジャッジ日時 2024-05-08 02:12:12
合計ジャッジ時間 12,814 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 127 ms
41,276 KB
testcase_01 AC 127 ms
41,384 KB
testcase_02 AC 129 ms
41,316 KB
testcase_03 AC 350 ms
50,016 KB
testcase_04 AC 239 ms
44,152 KB
testcase_05 AC 211 ms
42,288 KB
testcase_06 AC 358 ms
49,884 KB
testcase_07 AC 241 ms
43,784 KB
testcase_08 AC 193 ms
42,096 KB
testcase_09 AC 217 ms
42,952 KB
testcase_10 AC 175 ms
41,580 KB
testcase_11 AC 244 ms
43,484 KB
testcase_12 AC 235 ms
43,364 KB
testcase_13 AC 242 ms
43,744 KB
testcase_14 AC 245 ms
43,420 KB
testcase_15 AC 141 ms
41,540 KB
testcase_16 AC 195 ms
42,340 KB
testcase_17 AC 193 ms
42,184 KB
testcase_18 AC 128 ms
41,304 KB
testcase_19 AC 129 ms
41,336 KB
testcase_20 AC 131 ms
41,332 KB
testcase_21 AC 131 ms
41,740 KB
testcase_22 TLE -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class MyMain {

	final static String YUKICODER = "yukicoder";

	public static void main(String[] args) {

		Scanner sc = new Scanner(System.in);
		String s = sc.nextLine();

		int max = 0;
		int i = 1;
		while (true) {
			final String str = generateStr(i);

			int index = s.indexOf(str);

			if (index == -1) {
				break;
			} else {
				max = i;
			}
			i++;
		}

		System.out.println(max);

		sc.close();
	}

	public static String generateStr(int n) {
		StringBuilder sb = new StringBuilder();

		for (int i = 0; i < n; i++) {
			sb.append(YUKICODER);
		}
		return sb.toString();
	}

}
0