結果

問題 No.1471 Sort Queries
ユーザー harurunharurun
提出日時 2021-04-09 22:13:07
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 1,285 bytes
コンパイル時間 426 ms
コンパイル使用メモリ 82,172 KB
実行使用メモリ 79,388 KB
最終ジャッジ日時 2024-06-25 05:46:35
合計ジャッジ時間 25,657 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
57,600 KB
testcase_01 AC 35 ms
52,224 KB
testcase_02 AC 34 ms
52,608 KB
testcase_03 AC 36 ms
52,608 KB
testcase_04 AC 39 ms
53,120 KB
testcase_05 AC 37 ms
52,096 KB
testcase_06 AC 38 ms
52,480 KB
testcase_07 AC 38 ms
52,096 KB
testcase_08 AC 38 ms
52,864 KB
testcase_09 AC 35 ms
52,224 KB
testcase_10 AC 35 ms
52,352 KB
testcase_11 AC 38 ms
52,864 KB
testcase_12 AC 39 ms
52,992 KB
testcase_13 AC 416 ms
77,108 KB
testcase_14 AC 365 ms
76,388 KB
testcase_15 AC 650 ms
77,360 KB
testcase_16 AC 155 ms
76,536 KB
testcase_17 AC 319 ms
77,184 KB
testcase_18 AC 217 ms
76,288 KB
testcase_19 AC 184 ms
76,288 KB
testcase_20 AC 663 ms
77,492 KB
testcase_21 AC 328 ms
76,544 KB
testcase_22 AC 276 ms
76,280 KB
testcase_23 AC 1,449 ms
77,828 KB
testcase_24 AC 1,443 ms
78,092 KB
testcase_25 TLE -
testcase_26 AC 1,223 ms
77,412 KB
testcase_27 TLE -
testcase_28 TLE -
testcase_29 AC 1,226 ms
78,292 KB
testcase_30 AC 1,364 ms
77,948 KB
testcase_31 TLE -
testcase_32 AC 1,755 ms
78,976 KB
testcase_33 TLE -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
testcase_37 -- -
testcase_38 -- -
testcase_39 -- -
権限があれば一括ダウンロードができます

ソースコード

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にすること。
"""
def main():
  N,Q=pin(2)
  S=list(pin(1,str))
  for _ in [0]*Q:
    L,R,X=pin(3)
    #print(L,R,X)
    print(sorted(S[L-1:R])[X-1])
  return
main()
0