結果

問題 No.2298 yukicounter
ユーザー YGBKYGBK
提出日時 2023-05-15 19:30:05
言語 Java
(openjdk 23)
結果
TLE  
実行時間 -
コード長 623 bytes
コンパイル時間 3,686 ms
コンパイル使用メモリ 79,588 KB
実行使用メモリ 115,544 KB
最終ジャッジ日時 2024-12-14 01:39:12
合計ジャッジ時間 19,174 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 124 ms
60,640 KB
testcase_01 AC 134 ms
53,872 KB
testcase_02 AC 131 ms
54,460 KB
testcase_03 AC 349 ms
61,940 KB
testcase_04 AC 244 ms
56,736 KB
testcase_05 AC 192 ms
54,012 KB
testcase_06 AC 359 ms
61,848 KB
testcase_07 AC 253 ms
56,968 KB
testcase_08 AC 191 ms
54,132 KB
testcase_09 AC 214 ms
54,744 KB
testcase_10 AC 177 ms
54,180 KB
testcase_11 AC 228 ms
56,904 KB
testcase_12 AC 243 ms
56,980 KB
testcase_13 AC 248 ms
56,752 KB
testcase_14 AC 246 ms
56,928 KB
testcase_15 AC 144 ms
54,036 KB
testcase_16 AC 196 ms
54,476 KB
testcase_17 AC 192 ms
54,360 KB
testcase_18 AC 129 ms
54,072 KB
testcase_19 AC 138 ms
54,148 KB
testcase_20 AC 134 ms
54,172 KB
testcase_21 AC 136 ms
54,160 KB
testcase_22 TLE -
testcase_23 AC 549 ms
57,864 KB
testcase_24 AC 1,911 ms
62,388 KB
testcase_25 AC 479 ms
60,200 KB
testcase_26 AC 310 ms
56,912 KB
testcase_27 AC 939 ms
62,008 KB
testcase_28 AC 336 ms
56,920 KB
testcase_29 AC 581 ms
57,536 KB
testcase_30 AC 202 ms
54,472 KB
testcase_31 AC 292 ms
57,152 KB
testcase_32 AC 354 ms
115,544 KB
権限があれば一括ダウンロードができます

ソースコード

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