結果

問題 No.2298 yukicounter
ユーザー tentententen
提出日時 2023-05-29 10:33:09
言語 Java21
(openjdk 21)
結果
AC  
実行時間 219 ms / 2,000 ms
コード長 2,065 bytes
コンパイル時間 3,003 ms
コンパイル使用メモリ 92,320 KB
実行使用メモリ 45,316 KB
最終ジャッジ日時 2024-06-08 19:09:50
合計ジャッジ時間 8,300 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 52 ms
36,800 KB
testcase_01 AC 53 ms
37,060 KB
testcase_02 AC 52 ms
37,060 KB
testcase_03 AC 151 ms
42,944 KB
testcase_04 AC 115 ms
39,764 KB
testcase_05 AC 78 ms
37,824 KB
testcase_06 AC 188 ms
44,780 KB
testcase_07 AC 114 ms
39,352 KB
testcase_08 AC 75 ms
38,056 KB
testcase_09 AC 92 ms
39,240 KB
testcase_10 AC 62 ms
37,532 KB
testcase_11 AC 108 ms
39,448 KB
testcase_12 AC 105 ms
39,412 KB
testcase_13 AC 117 ms
39,996 KB
testcase_14 AC 117 ms
39,616 KB
testcase_15 AC 56 ms
36,800 KB
testcase_16 AC 94 ms
38,748 KB
testcase_17 AC 83 ms
37,968 KB
testcase_18 AC 53 ms
36,996 KB
testcase_19 AC 52 ms
37,112 KB
testcase_20 AC 53 ms
37,208 KB
testcase_21 AC 53 ms
37,228 KB
testcase_22 AC 126 ms
40,328 KB
testcase_23 AC 116 ms
39,980 KB
testcase_24 AC 219 ms
45,316 KB
testcase_25 AC 155 ms
42,528 KB
testcase_26 AC 102 ms
39,584 KB
testcase_27 AC 184 ms
45,180 KB
testcase_28 AC 99 ms
39,376 KB
testcase_29 AC 92 ms
39,336 KB
testcase_30 AC 57 ms
36,816 KB
testcase_31 AC 89 ms
38,840 KB
testcase_32 AC 109 ms
39,300 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        String s = sc.next();
        String yukicoder = "yukicoder";
        int yLength = yukicoder.length();
        ArrayList<Integer> ans = new ArrayList<>();
        int idx = 0;
        while ((idx = s.indexOf(yukicoder, idx)) != -1) {
            ans.add(idx);
            idx++;
        }
        int count = 0;
        int current = 0;
        int prev = -yLength - 1;
        for (int x : ans) {
            if (x - prev == yLength) {
                current++;
            } else {
                current = 1;
            }
            count = Math.max(count, current);
            prev = x;
        }
        System.out.println(count);
    }
}

class Utilities {
    static String arrayToLineString(Object[] arr) {
        return Arrays.stream(arr).map(x -> x.toString()).collect(Collectors.joining("\n"));
    }
    
    static String arrayToLineString(int[] arr) {
        return String.join("\n", Arrays.stream(arr).mapToObj(String::valueOf).toArray(String[]::new));
    }
}
class Scanner {
    BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
    StringTokenizer st = new StringTokenizer("");
    StringBuilder sb = new StringBuilder();
    
    public Scanner() throws Exception {
        
    }
    
    public int nextInt() throws Exception {
        return Integer.parseInt(next());
    }
    
    public long nextLong() throws Exception {
        return Long.parseLong(next());
    }
    
    public double nextDouble() throws Exception {
        return Double.parseDouble(next());
    }
    
    public int[] nextIntArray() throws Exception {
        return Stream.of(br.readLine().split(" ")).mapToInt(Integer::parseInt).toArray();
    }
    
    public String next() throws Exception {
        while (!st.hasMoreTokens()) {
            st = new StringTokenizer(br.readLine());
        }
        return st.nextToken();
    }
    
}
0