結果
問題 | No.1471 Sort Queries |
ユーザー | harurun |
提出日時 | 2021-04-09 22:18:53 |
言語 | PyPy3 (7.3.15) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,375 bytes |
コンパイル時間 | 174 ms |
コンパイル使用メモリ | 82,596 KB |
実行使用メモリ | 205,872 KB |
最終ジャッジ日時 | 2024-06-25 05:53:11 |
合計ジャッジ時間 | 12,330 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 45 ms
59,136 KB |
testcase_01 | AC | 46 ms
53,376 KB |
testcase_02 | AC | 44 ms
54,144 KB |
testcase_03 | AC | 46 ms
54,016 KB |
testcase_04 | AC | 45 ms
54,016 KB |
testcase_05 | AC | 45 ms
54,144 KB |
testcase_06 | AC | 45 ms
53,888 KB |
testcase_07 | AC | 44 ms
54,016 KB |
testcase_08 | AC | 46 ms
54,272 KB |
testcase_09 | AC | 44 ms
54,144 KB |
testcase_10 | AC | 44 ms
54,528 KB |
testcase_11 | AC | 46 ms
54,736 KB |
testcase_12 | AC | 45 ms
54,656 KB |
testcase_13 | AC | 475 ms
92,416 KB |
testcase_14 | AC | 409 ms
92,800 KB |
testcase_15 | AC | 715 ms
106,496 KB |
testcase_16 | AC | 175 ms
79,308 KB |
testcase_17 | AC | 351 ms
86,272 KB |
testcase_18 | AC | 267 ms
85,888 KB |
testcase_19 | AC | 224 ms
85,120 KB |
testcase_20 | AC | 730 ms
113,920 KB |
testcase_21 | AC | 380 ms
92,160 KB |
testcase_22 | AC | 313 ms
85,376 KB |
testcase_23 | AC | 1,605 ms
155,776 KB |
testcase_24 | AC | 1,593 ms
155,648 KB |
testcase_25 | TLE | - |
testcase_26 | AC | 1,373 ms
142,296 KB |
testcase_27 | TLE | - |
testcase_28 | TLE | - |
testcase_29 | AC | 1,504 ms
142,332 KB |
testcase_30 | AC | 1,507 ms
148,656 KB |
testcase_31 | TLE | - |
testcase_32 | AC | 1,985 ms
179,168 KB |
testcase_33 | TLE | - |
testcase_34 | -- | - |
testcase_35 | -- | - |
testcase_36 | -- | - |
testcase_37 | -- | - |
testcase_38 | -- | - |
testcase_39 | -- | - |
ソースコード
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 collections import Counter def main(): N,Q=pin(2) S=list(pin(1,str)) d=Counter() for _ in [0]*Q: L,R,X=pin(3) #print(L,R,X) if d[(L,R)]==0: d[(L,R)]=sorted(S[L-1:R]) print(d[(L,R)][X-1]) return main()