結果

問題 No.2361 Many String Compare Queries
ユーザー とりゐとりゐ
提出日時 2023-01-14 18:04:35
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 217 bytes
コンパイル時間 317 ms
コンパイル使用メモリ 86,988 KB
実行使用メモリ 263,628 KB
最終ジャッジ日時 2023-09-13 11:19:28
合計ジャッジ時間 5,443 ms
ジャッジサーバーID
(参考情報)
judge12 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
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]<s[l:r+1]:
        ans+=1
  print(ans)
0