結果

問題 No.1471 Sort Queries
ユーザー harurunharurun
提出日時 2021-04-09 22:29:43
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 91 ms / 2,000 ms
コード長 1,557 bytes
コンパイル時間 639 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 15,968 KB
最終ジャッジ日時 2024-06-25 06:06:39
合計ジャッジ時間 3,564 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
10,880 KB
testcase_01 AC 30 ms
10,880 KB
testcase_02 AC 29 ms
11,008 KB
testcase_03 AC 31 ms
10,880 KB
testcase_04 AC 32 ms
11,008 KB
testcase_05 AC 30 ms
11,008 KB
testcase_06 AC 31 ms
11,136 KB
testcase_07 AC 31 ms
11,008 KB
testcase_08 AC 32 ms
10,880 KB
testcase_09 AC 32 ms
11,136 KB
testcase_10 AC 30 ms
10,880 KB
testcase_11 AC 33 ms
10,880 KB
testcase_12 AC 31 ms
10,880 KB
testcase_13 AC 46 ms
12,544 KB
testcase_14 AC 45 ms
12,672 KB
testcase_15 AC 55 ms
12,928 KB
testcase_16 AC 43 ms
11,904 KB
testcase_17 AC 41 ms
12,672 KB
testcase_18 AC 39 ms
12,032 KB
testcase_19 AC 45 ms
11,776 KB
testcase_20 AC 54 ms
13,056 KB
testcase_21 AC 42 ms
12,288 KB
testcase_22 AC 42 ms
12,288 KB
testcase_23 AC 63 ms
13,952 KB
testcase_24 AC 63 ms
14,208 KB
testcase_25 AC 77 ms
14,720 KB
testcase_26 AC 65 ms
13,568 KB
testcase_27 AC 69 ms
14,976 KB
testcase_28 AC 68 ms
14,976 KB
testcase_29 AC 63 ms
13,696 KB
testcase_30 AC 60 ms
13,824 KB
testcase_31 AC 77 ms
14,396 KB
testcase_32 AC 81 ms
14,204 KB
testcase_33 AC 90 ms
15,844 KB
testcase_34 AC 91 ms
15,704 KB
testcase_35 AC 90 ms
15,704 KB
testcase_36 AC 88 ms
15,000 KB
testcase_37 AC 89 ms
15,252 KB
testcase_38 AC 68 ms
15,968 KB
testcase_39 AC 85 ms
15,716 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

class INPUT:
  def __init__(self):
    self.l=open(0).read().split()[::-1]
    self.length=len(self.l)
    return

  def stream(self,k=1,f=int,f2=False):
    assert(-1<k)
    m=self.length
    if m==0 or m<k:
      raise Exception("There is no input!")
    elif f!=str:
      if k==0:
        self.length=0
        return list(map(f,self.l[::-1]))
      if k==1 and not f2:
        self.length-=1
        return f(self.l.pop())
      if k==1 and f2:
        self.length-=1
        return [f(self.l.pop())]
      ret=[]
      for _ in [0]*k:
        ret.append(f(self.l.pop()))
      self.length-=k
      return ret
    else:
      if k==0:
        self.length=0
        return self.l[::-1]
      if k==1 and not f2:
        self.length-=1
        return self.l.pop()
      if k==1 and f2:
        self.length-=1
        return [self.l.pop()]
      ret=[]
      for _ in [0]*k:
        ret.append(self.l.pop())
      self.length-=k
      return ret
pin=INPUT().stream

"""
pin(number[default:1],f[default:int],f2[default:False])
if number==0 -> return left all
listを変数で受け取るとき、必ずlistをTrueにすること。
"""
from sys import stderr
from copy import copy
we=stderr.write
def main():
  N,Q=pin(2)
  S=list(pin(1,str))
  d=[]
  a=[0]*26
  d.append(copy(a))
  for i in S:
    a[ord(i)-97]+=1
    d.append(copy(a))
  for _ in [0]*Q:
    L,R,X=pin(3)
    #print(d[R],d[L-1])
    db=[]
    for i in range(26):
      t=d[R][i]-d[L-1][i]
      db.append(t)
      X-=t
      if X<=0:
        print(chr(97+i))
        break
  return
main()
0