結果
問題 | No.238 Mr. K's Another Gift |
ユーザー | rlangevin |
提出日時 | 2024-01-25 12:11:08 |
言語 | PyPy3 (7.3.15) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,111 bytes |
コンパイル時間 | 163 ms |
コンパイル使用メモリ | 82,116 KB |
実行使用メモリ | 128,500 KB |
最終ジャッジ日時 | 2024-09-28 07:18:17 |
合計ジャッジ時間 | 10,122 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 38 ms
57,472 KB |
testcase_01 | AC | 37 ms
52,480 KB |
testcase_02 | AC | 39 ms
52,736 KB |
testcase_03 | AC | 76 ms
76,288 KB |
testcase_04 | AC | 218 ms
79,360 KB |
testcase_05 | TLE | - |
testcase_06 | AC | 1,832 ms
128,500 KB |
testcase_07 | TLE | - |
testcase_08 | TLE | - |
testcase_09 | TLE | - |
testcase_10 | AC | 39 ms
54,340 KB |
testcase_11 | AC | 40 ms
54,584 KB |
testcase_12 | AC | 65 ms
76,120 KB |
testcase_13 | AC | 141 ms
77,576 KB |
testcase_14 | TLE | - |
testcase_15 | TLE | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
testcase_32 | -- | - |
testcase_33 | -- | - |
testcase_34 | -- | - |
testcase_35 | -- | - |
testcase_36 | -- | - |
testcase_37 | -- | - |
testcase_38 | -- | - |
testcase_39 | -- | - |
testcase_40 | -- | - |
testcase_41 | -- | - |
testcase_42 | -- | - |
ソースコード
class RollingHash(): def __init__(self, s): self._mod = 2 ** 64 - 1 self._base = 4649 n = len(s) self.h = [0] * (n + 1) self.pw = [1] * (n + 5) for i in range(n): self.h[i + 1] = self.h[i] * self._base + ord(s[i]) self.h[i + 1] %= self._mod for i in range(n + 4): self.pw[i + 1] = self.pw[i] * self._base self.pw[i + 1] %= self._mod """ s[l:r]のhash値 """ def get(self, l, r): return (self.h[r] - self.h[l] * self.pw[r - l]) % self._mod S1 = list(input()) S2 = S1[::-1] R1 = RollingHash(S1) R2 = RollingHash(S2) N = len(S1) pw = R1.pw mod = R1._mod for i in range(N + 1): for s in range(26): si = s + ord("a") v1 = R1.get(0, i) * pw[N - i + 1] + R1.get(i, N) + si * pw[N - i] v2 = R2.get(0, N - i) * pw[i + 1] + R2.get(N - i, N) + si * pw[i] if (v1 - v2) % mod == 0: ans = S1[:i] + [chr(ord("a") + s)] + S1[i:] print(*ans, sep="") exit() print("NA")