結果

問題 No.1471 Sort Queries
ユーザー McGregorshMcGregorsh
提出日時 2022-07-19 18:47:40
言語 PyPy3
(7.3.15)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 1,896 bytes
コンパイル時間 1,195 ms
コンパイル使用メモリ 86,816 KB
実行使用メモリ 268,428 KB
最終ジャッジ日時 2023-09-14 15:01:01
合計ジャッジ時間 24,146 ms
ジャッジサーバーID
(参考情報)
judge14 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 252 ms
92,520 KB
testcase_01 AC 255 ms
92,344 KB
testcase_02 AC 252 ms
92,352 KB
testcase_03 AC 284 ms
93,960 KB
testcase_04 AC 263 ms
93,912 KB
testcase_05 AC 259 ms
93,840 KB
testcase_06 AC 243 ms
92,336 KB
testcase_07 AC 255 ms
93,768 KB
testcase_08 AC 258 ms
93,900 KB
testcase_09 AC 255 ms
94,012 KB
testcase_10 AC 239 ms
92,400 KB
testcase_11 AC 253 ms
94,004 KB
testcase_12 AC 260 ms
94,492 KB
testcase_13 AC 361 ms
96,216 KB
testcase_14 AC 349 ms
95,696 KB
testcase_15 AC 404 ms
98,160 KB
testcase_16 AC 328 ms
95,636 KB
testcase_17 AC 331 ms
95,840 KB
testcase_18 AC 307 ms
95,308 KB
testcase_19 AC 310 ms
94,612 KB
testcase_20 AC 419 ms
96,952 KB
testcase_21 AC 336 ms
95,728 KB
testcase_22 AC 329 ms
95,420 KB
testcase_23 AC 562 ms
105,460 KB
testcase_24 AC 556 ms
106,840 KB
testcase_25 AC 728 ms
114,252 KB
testcase_26 AC 524 ms
103,508 KB
testcase_27 AC 686 ms
115,832 KB
testcase_28 AC 688 ms
113,940 KB
testcase_29 AC 531 ms
101,580 KB
testcase_30 AC 545 ms
104,620 KB
testcase_31 AC 703 ms
109,476 KB
testcase_32 AC 640 ms
103,904 KB
testcase_33 TLE -
testcase_34 AC 959 ms
132,176 KB
testcase_35 AC 963 ms
127,100 KB
testcase_36 TLE -
testcase_37 TLE -
testcase_38 TLE -
testcase_39 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys, re
from fractions import Fraction
from math import ceil, floor, sqrt, pi, factorial, gcd
from copy import deepcopy
from collections import Counter, deque, defaultdict
from heapq import heapify, heappop, heappush
from itertools import accumulate, product, combinations, combinations_with_replacement, permutations
from bisect import bisect, bisect_left, bisect_right
from functools import reduce
from decimal import Decimal, getcontext
def i_input(): return int(input())
def i_map(): return map(int, input().split())
def i_list(): return list(i_map())
def i_row(N): return [i_input() for _ in range(N)]
def i_row_list(N): return [i_list() for _ in range(N)]
def s_input(): return input()
def s_map(): return input().split()
def s_list(): return list(s_map())
def s_row(N): return [s_input for _ in range(N)]
def s_row_str(N): return [s_list() for _ in range(N)]
def s_row_list(N): return [list(s_input()) for _ in range(N)]
def lcm(a, b): return a * b // gcd(a, b)
def get_distance(x1, y1, x2, y2):
	  d = sqrt((x2 - x1) ** 2 + (y2 - y1) ** 2)
	  return d
def rotate(table):
   	  n_fild = []
   	  for x in zip(*table[::-1]):
   	  	  n_fild.append(x)
   	  return n_fild
sys.setrecursionlimit(10 ** 7)
INF = float('inf')
MOD = 10 ** 9 + 7
MOD2 = 998244353


###関数コピーしたか?###
def main():
   
   n, q = i_map()
   s = input()
   
   counts = [[0] * (n+1) for i in range(26)]
   for i in range(n):
   	  point = ord(s[i]) - 97
   	  counts[point][i+1] += 1
   
   for i in range(26):
   	  for j in range(n):
   	  	  counts[i][j+1] += counts[i][j] 
   #print(counts)
   for i in range(q):
   	  l, r, x = i_map()
   	  x -= 1
   	  mozi = []
   	  for j in range(26):
   	  	  score = counts[j][r] - counts[j][l-1]
   	  	  for k in range(score):
   	  	  	  mozi.append(chr(j + 97))
   	  #print(mozi)
   	  print(mozi[x])
   
if __name__ == '__main__':
    main()


0