結果

問題 No.238 Mr. K's Another Gift
ユーザー rlangevinrlangevin
提出日時 2024-01-25 12:38:36
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,115 bytes
コンパイル時間 247 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 128,432 KB
最終ジャッジ日時 2024-09-28 07:20:10
合計ジャッジ時間 8,322 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,224 KB
testcase_01 AC 40 ms
52,096 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 TLE -
testcase_06 TLE -
testcase_07 TLE -
testcase_08 TLE -
testcase_09 TLE -
testcase_10 AC 40 ms
52,224 KB
testcase_11 AC 41 ms
52,992 KB
testcase_12 AC 74 ms
75,776 KB
testcase_13 AC 143 ms
77,184 KB
testcase_14 AC 1,804 ms
103,492 KB
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 AC 39 ms
52,608 KB
testcase_21 AC 39 ms
51,968 KB
testcase_22 AC 40 ms
52,864 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 1,843 ms
128,432 KB
testcase_27 TLE -
testcase_28 AC 1,620 ms
124,836 KB
testcase_29 TLE -
testcase_30 AC 39 ms
52,736 KB
testcase_31 AC 62 ms
68,480 KB
testcase_32 AC 91 ms
76,544 KB
testcase_33 AC 327 ms
79,616 KB
testcase_34 TLE -
testcase_35 TLE -
testcase_36 TLE -
testcase_37 TLE -
testcase_38 TLE -
testcase_39 TLE -
testcase_40 WA -
testcase_41 AC 41 ms
51,712 KB
testcase_42 AC 41 ms
52,992 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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]) & mod
        v2 = (R2.get(0, N - i) * pw[i + 1] + R2.get(N - i, N) + si * pw[i]) & mod
        if v1 == v2:
            ans = S1[:i] + [chr(ord("a") + s)] + S1[i:]
            print(*ans, sep="")
            exit()
            
print("NA")
0