結果
問題 | No.515 典型LCP |
ユーザー | mkawa2 |
提出日時 | 2023-08-18 17:52:28 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 836 ms / 1,000 ms |
コード長 | 1,357 bytes |
コンパイル時間 | 387 ms |
コンパイル使用メモリ | 82,088 KB |
実行使用メモリ | 92,828 KB |
最終ジャッジ日時 | 2024-05-05 23:19:36 |
合計ジャッジ時間 | 8,162 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 573 ms
92,820 KB |
testcase_01 | AC | 836 ms
92,828 KB |
testcase_02 | AC | 482 ms
81,664 KB |
testcase_03 | AC | 39 ms
52,096 KB |
testcase_04 | AC | 36 ms
52,480 KB |
testcase_05 | AC | 295 ms
73,748 KB |
testcase_06 | AC | 287 ms
73,472 KB |
testcase_07 | AC | 301 ms
73,696 KB |
testcase_08 | AC | 287 ms
73,672 KB |
testcase_09 | AC | 349 ms
82,048 KB |
testcase_10 | AC | 210 ms
82,432 KB |
testcase_11 | AC | 197 ms
82,560 KB |
testcase_12 | AC | 188 ms
82,432 KB |
testcase_13 | AC | 411 ms
74,096 KB |
testcase_14 | AC | 79 ms
79,232 KB |
testcase_15 | AC | 578 ms
73,856 KB |
testcase_16 | AC | 606 ms
74,752 KB |
ソースコード
import sys # sys.setrecursionlimit(200005) int1 = lambda x: int(x)-1 pDB = lambda *x: print(*x, end="\n", file=sys.stderr) p2D = lambda x: print(*x, sep="\n", end="\n\n", file=sys.stderr) def II(): return int(sys.stdin.readline()) def LI(): return list(map(int, sys.stdin.readline().split())) def LLI(rows_number): return [LI() for _ in range(rows_number)] def LI1(): return list(map(int1, sys.stdin.readline().split())) def LLI1(rows_number): return [LI1() for _ in range(rows_number)] def SI(): return sys.stdin.readline().rstrip() dij = [(0, 1), (-1, 0), (0, -1), (1, 0)] # dij = [(0, 1), (-1, 0), (0, -1), (1, 0), (1, 1), (1, -1), (-1, 1), (-1, -1)] inf = (1 << 63)-1 # inf = (1 << 31)-1 # md = 10**9+7 md = 998244353 base = 34 mod = 9999971 def hash_arr(s): h = 0 hh = [0]*(len(s)+1) for i, c in enumerate(s): c = ord(c)-97 h = (h*base+c)%mod hh[i+1] = h return hh n = II() ss = [] for _ in range(n): ss.append(hash_arr(SI())) m, x, d = LI() ans = 0 for _ in range(m): i = (x//(n-1))+1 j = (x%(n-1))+1 if i > j: i, j = j, i else: j += 1 x = (x+d)%(n*(n-1)) si = ss[i-1] sj = ss[j-1] l, r = 0, min(len(si), len(sj)) while l+1 < r: c = (l+r)//2 if si[c] == sj[c]: l = c else: r = c ans += l print(ans)