結果

問題 No.1471 Sort Queries
ユーザー tentententen
提出日時 2022-09-30 15:06:10
言語 Java21
(openjdk 21)
結果
AC  
実行時間 161 ms / 2,000 ms
コード長 1,762 bytes
コンパイル時間 2,572 ms
コンパイル使用メモリ 77,520 KB
実行使用メモリ 49,384 KB
最終ジャッジ日時 2024-06-02 02:28:58
合計ジャッジ時間 8,399 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 51 ms
37,100 KB
testcase_01 AC 50 ms
37,128 KB
testcase_02 AC 50 ms
36,916 KB
testcase_03 AC 52 ms
36,940 KB
testcase_04 AC 52 ms
37,408 KB
testcase_05 AC 51 ms
37,340 KB
testcase_06 AC 50 ms
37,200 KB
testcase_07 AC 51 ms
37,060 KB
testcase_08 AC 52 ms
37,540 KB
testcase_09 AC 51 ms
37,216 KB
testcase_10 AC 51 ms
37,304 KB
testcase_11 AC 52 ms
37,284 KB
testcase_12 AC 50 ms
37,336 KB
testcase_13 AC 118 ms
40,244 KB
testcase_14 AC 120 ms
40,384 KB
testcase_15 AC 114 ms
40,980 KB
testcase_16 AC 117 ms
39,880 KB
testcase_17 AC 103 ms
40,040 KB
testcase_18 AC 94 ms
39,512 KB
testcase_19 AC 122 ms
40,104 KB
testcase_20 AC 133 ms
40,916 KB
testcase_21 AC 118 ms
40,132 KB
testcase_22 AC 115 ms
39,980 KB
testcase_23 AC 145 ms
46,552 KB
testcase_24 AC 142 ms
46,404 KB
testcase_25 AC 155 ms
47,284 KB
testcase_26 AC 147 ms
46,436 KB
testcase_27 AC 146 ms
45,736 KB
testcase_28 AC 141 ms
46,668 KB
testcase_29 AC 139 ms
46,392 KB
testcase_30 AC 135 ms
45,412 KB
testcase_31 AC 152 ms
47,304 KB
testcase_32 AC 151 ms
42,572 KB
testcase_33 AC 161 ms
48,652 KB
testcase_34 AC 159 ms
48,528 KB
testcase_35 AC 159 ms
48,812 KB
testcase_36 AC 159 ms
48,500 KB
testcase_37 AC 156 ms
48,276 KB
testcase_38 AC 145 ms
44,588 KB
testcase_39 AC 159 ms
49,384 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        int n = sc.nextInt();
        int q = sc.nextInt();
        char[] values = sc.next().toCharArray();
        int[][] sums = new int[n + 1][26];
        for (int i = 1; i <= n; i++) {
            for (int j = 0; j < 26; j++) {
                sums[i][j] = sums[i - 1][j];
            }
            sums[i][values[i - 1] - 'a']++;
        }
        StringBuilder sb = new StringBuilder();
        while (q-- > 0) {
            int left = sc.nextInt();
            int right = sc.nextInt();
            int x = sc.nextInt();
            int count = 0;
            for (int i = 0; i < 26; i++) {
                count += sums[right][i] - sums[left - 1][i];
                if (count >= x) {
                    sb.append((char)(i + 'a')).append("\n");
                    break;
                }
            }
        }
        System.out.print(sb);
    }
}
    
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 String next() throws Exception {
        while (!st.hasMoreTokens()) {
            st = new StringTokenizer(br.readLine());
        }
        return st.nextToken();
    }
    
}
0