結果

問題 No.1471 Sort Queries
ユーザー tentententen
提出日時 2021-04-13 13:02:46
言語 Java21
(openjdk 21)
結果
AC  
実行時間 164 ms / 2,000 ms
コード長 1,550 bytes
コンパイル時間 2,396 ms
コンパイル使用メモリ 77,944 KB
実行使用メモリ 44,608 KB
最終ジャッジ日時 2024-06-29 13:44:43
合計ジャッジ時間 8,483 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 52 ms
37,088 KB
testcase_01 AC 52 ms
37,144 KB
testcase_02 AC 52 ms
36,660 KB
testcase_03 AC 53 ms
37,084 KB
testcase_04 AC 54 ms
37,092 KB
testcase_05 AC 53 ms
37,060 KB
testcase_06 AC 52 ms
36,844 KB
testcase_07 AC 54 ms
37,184 KB
testcase_08 AC 57 ms
37,216 KB
testcase_09 AC 53 ms
36,996 KB
testcase_10 AC 53 ms
37,232 KB
testcase_11 AC 55 ms
36,716 KB
testcase_12 AC 53 ms
37,172 KB
testcase_13 AC 127 ms
39,784 KB
testcase_14 AC 125 ms
39,960 KB
testcase_15 AC 138 ms
40,532 KB
testcase_16 AC 126 ms
39,804 KB
testcase_17 AC 117 ms
39,676 KB
testcase_18 AC 100 ms
38,988 KB
testcase_19 AC 130 ms
39,880 KB
testcase_20 AC 139 ms
41,044 KB
testcase_21 AC 125 ms
39,972 KB
testcase_22 AC 108 ms
39,672 KB
testcase_23 AC 142 ms
41,708 KB
testcase_24 AC 139 ms
41,064 KB
testcase_25 AC 151 ms
42,252 KB
testcase_26 AC 144 ms
41,456 KB
testcase_27 AC 150 ms
42,204 KB
testcase_28 AC 140 ms
42,200 KB
testcase_29 AC 140 ms
41,480 KB
testcase_30 AC 140 ms
41,576 KB
testcase_31 AC 155 ms
42,176 KB
testcase_32 AC 153 ms
42,564 KB
testcase_33 AC 156 ms
44,608 KB
testcase_34 AC 164 ms
44,452 KB
testcase_35 AC 156 ms
44,524 KB
testcase_36 AC 150 ms
44,320 KB
testcase_37 AC 151 ms
44,268 KB
testcase_38 AC 149 ms
44,284 KB
testcase_39 AC 155 ms
44,328 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();
        int[][] sums = new int[n + 1][];
        sums[0] = new int[26];
        char[] arr = sc.next().toCharArray();
        for (int i =1; i <= n; i++) {
            sums[i] = (int[])(sums[i - 1].clone());
            sums[i][arr[i - 1] - 'a']++;
        }
        StringBuilder sb = new StringBuilder();
        for (int i = 0; i < q; i++) {
            int left = sc.nextInt() - 1;
            int right = sc.nextInt();
            int x = sc.nextInt();
            for (int j = 0; j < 26; j++) {
                x -= sums[right][j] - sums[left][j];
                if (x <= 0) {
                    sb.append((char)(j + 'a')).append("\n");
                    break;
                }
            }
        }
        System.out.print(sb);
    }
}
class Scanner {
    BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
    StringTokenizer st = new StringTokenizer("");
    
    public Scanner() throws Exception {
        
    }
    
    public int nextInt() throws Exception {
        return Integer.parseInt(next());
    }
    
    public long nextLong() throws Exception {
        return Long.parseLong(next());
    }
    
    public String next() throws Exception {
        if (!st.hasMoreTokens()) {
            st = new StringTokenizer(br.readLine());
        }
        return st.nextToken();
    }
}
0