結果

問題 No.2298 yukicounter
ユーザー YGBKYGBK
提出日時 2023-05-15 20:19:58
言語 Java
(openjdk 23)
結果
TLE  
実行時間 -
コード長 643 bytes
コンパイル時間 4,235 ms
コンパイル使用メモリ 77,008 KB
実行使用メモリ 123,612 KB
最終ジャッジ日時 2024-12-14 02:28:43
合計ジャッジ時間 62,201 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 111 ms
59,908 KB
testcase_01 AC 111 ms
118,624 KB
testcase_02 AC 113 ms
59,900 KB
testcase_03 TLE -
testcase_04 TLE -
testcase_05 AC 530 ms
123,376 KB
testcase_06 TLE -
testcase_07 TLE -
testcase_08 AC 875 ms
64,588 KB
testcase_09 AC 1,706 ms
64,756 KB
testcase_10 AC 339 ms
63,640 KB
testcase_11 TLE -
testcase_12 TLE -
testcase_13 TLE -
testcase_14 TLE -
testcase_15 AC 173 ms
114,604 KB
testcase_16 AC 1,124 ms
64,800 KB
testcase_17 AC 859 ms
123,612 KB
testcase_18 AC 132 ms
61,212 KB
testcase_19 AC 124 ms
112,112 KB
testcase_20 AC 111 ms
59,648 KB
testcase_21 AC 123 ms
112,292 KB
testcase_22 AC 248 ms
63,852 KB
testcase_23 TLE -
testcase_24 TLE -
testcase_25 TLE -
testcase_26 TLE -
testcase_27 TLE -
testcase_28 TLE -
testcase_29 TLE -
testcase_30 AC 361 ms
57,204 KB
testcase_31 TLE -
testcase_32 TLE -
権限があれば一括ダウンロードができます

ソースコード

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 = s.length() / YUKICODER.length();
		int i = max;
		while (true) {
			final String str = generateStr(i);

			int index = s.indexOf(str);

			if (index != -1) {
				max = i;
				break;
			}
			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