結果

問題 No.2454 Former < Latter
ユーザー sotanishysotanishy
提出日時 2023-09-01 21:49:55
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 666 bytes
コンパイル時間 405 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 78,976 KB
最終ジャッジ日時 2024-06-11 03:34:26
合計ジャッジ時間 2,958 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
51,712 KB
testcase_01 WA -
testcase_02 AC 79 ms
78,336 KB
testcase_03 AC 71 ms
78,208 KB
testcase_04 AC 70 ms
78,336 KB
testcase_05 AC 74 ms
78,208 KB
testcase_06 AC 71 ms
78,080 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 70 ms
77,056 KB
testcase_10 AC 78 ms
77,440 KB
testcase_11 AC 73 ms
78,080 KB
testcase_12 WA -
testcase_13 AC 73 ms
77,952 KB
testcase_14 AC 73 ms
78,080 KB
testcase_15 WA -
testcase_16 AC 73 ms
77,952 KB
testcase_17 AC 147 ms
78,848 KB
testcase_18 WA -
testcase_19 AC 72 ms
78,208 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 82 ms
77,184 KB
testcase_23 AC 73 ms
77,184 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline


def z_array(s):
    n = len(s)
    z = [0] * n
    z[0] = n
    l = r = 0
    for i in range(1, n):
        k = i - l
        if i <= r and z[k] < r - i + 1:
            z[i] = z[k]
        else:
            l = i
            if i > r:
                r = i
            while r < n and s[r - l] == s[r]:
                r += 1
            r -= 1
            z[i] = r - l + 1
    return z


T = int(input())
for _ in range(T):
    N = int(input())
    S = input().rstrip()
    z = z_array(S)
    cnt = 0
    for i in range(1, N):
        if z[i] > i or (i+z[i] < N and S[z[i]] < S[i+z[i]]):
            cnt += 1
    print(cnt)
0