結果

問題 No.2361 Many String Compare Queries
ユーザー とりゐとりゐ
提出日時 2023-01-14 18:05:14
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 219 bytes
コンパイル時間 167 ms
コンパイル使用メモリ 82,352 KB
実行使用メモリ 265,536 KB
最終ジャッジ日時 2024-06-30 20:40:26
合計ジャッジ時間 4,828 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
59,604 KB
testcase_01 AC 38 ms
53,160 KB
testcase_02 AC 39 ms
52,768 KB
testcase_03 AC 52 ms
64,412 KB
testcase_04 AC 44 ms
61,244 KB
testcase_05 AC 37 ms
51,560 KB
testcase_06 AC 38 ms
52,640 KB
testcase_07 AC 83 ms
76,124 KB
testcase_08 TLE -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

n,q=map(int,input().split())
s=input()
ANS=[]
for _ in range(q):
  l,r=map(lambda x:int(x)-1,input().split())
  ans=0
  for i in range(n):
    for j in range(i,n):
      if s[i:j+1]<s[l:r+1]:
        ans+=1
  print(ans)
0