結果

問題 No.2454 Former < Latter
ユーザー ゼットゼット
提出日時 2023-09-01 22:24:18
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 648 ms / 2,000 ms
コード長 677 bytes
コンパイル時間 433 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 81,272 KB
最終ジャッジ日時 2024-06-11 04:16:39
合計ジャッジ時間 12,487 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,224 KB
testcase_01 AC 38 ms
52,736 KB
testcase_02 AC 648 ms
81,272 KB
testcase_03 AC 598 ms
80,920 KB
testcase_04 AC 593 ms
80,896 KB
testcase_05 AC 607 ms
81,028 KB
testcase_06 AC 555 ms
80,896 KB
testcase_07 AC 575 ms
81,152 KB
testcase_08 AC 325 ms
76,784 KB
testcase_09 AC 385 ms
79,232 KB
testcase_10 AC 446 ms
79,872 KB
testcase_11 AC 605 ms
80,680 KB
testcase_12 AC 608 ms
80,540 KB
testcase_13 AC 606 ms
81,024 KB
testcase_14 AC 609 ms
81,152 KB
testcase_15 AC 523 ms
80,580 KB
testcase_16 AC 538 ms
80,640 KB
testcase_17 AC 493 ms
77,700 KB
testcase_18 AC 240 ms
76,708 KB
testcase_19 AC 584 ms
81,152 KB
testcase_20 AC 565 ms
81,204 KB
testcase_21 AC 322 ms
76,640 KB
testcase_22 AC 403 ms
79,896 KB
testcase_23 AC 404 ms
79,216 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

Q=int(input())
mod=67280421310721
for _ in range(Q):
  N=int(input())
  S=input()
  x100=[1]*(N+1)
  for i in range(1,N+1):
    x100[i]=x100[i-1]*100
    x100[i]%=mod
  v=[0]*N
  w=0
  for i in range(N):
    w*=100
    w%=mod
    x=ord(S[i])-ord('a')
    w+=x+1
    w%=mod
    v[i]=w
  result=0
  for i in range(1,N):
    l=0
    r=min(i,N-i)
    r2=r
    while True:
      m=(l+r+1)//2
      a=v[m-1]
      b=v[i+m-1]-v[i-1]*(x100[m])
      b%=mod
      if a==b:
        l=m
      else:
        r=m-1
      if l==r:
        break
    if l==r2:
      if N>2*i:
        result+=1
    else:
      p=ord(S[l])
      q=ord(S[i+l])
      if p<q:
        result+=1
  print(result)
  
0