結果
問題 | No.2234 palindromer |
ユーザー | タコイモ |
提出日時 | 2023-03-03 21:57:18 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 42 ms / 2,000 ms |
コード長 | 2,787 bytes |
コンパイル時間 | 182 ms |
コンパイル使用メモリ | 82,176 KB |
実行使用メモリ | 60,220 KB |
最終ジャッジ日時 | 2024-09-17 22:53:47 |
合計ジャッジ時間 | 1,612 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge6 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 37 ms
54,188 KB |
testcase_01 | AC | 39 ms
54,636 KB |
testcase_02 | AC | 41 ms
53,984 KB |
testcase_03 | AC | 39 ms
55,108 KB |
testcase_04 | AC | 37 ms
54,596 KB |
testcase_05 | AC | 38 ms
54,400 KB |
testcase_06 | AC | 37 ms
55,800 KB |
testcase_07 | AC | 39 ms
54,740 KB |
testcase_08 | AC | 40 ms
54,520 KB |
testcase_09 | AC | 36 ms
55,164 KB |
testcase_10 | AC | 38 ms
55,064 KB |
testcase_11 | AC | 42 ms
60,220 KB |
testcase_12 | AC | 39 ms
55,832 KB |
testcase_13 | AC | 37 ms
54,912 KB |
testcase_14 | AC | 35 ms
55,300 KB |
testcase_15 | AC | 39 ms
54,460 KB |
ソースコード
from collections import defaultdict #####segfunc##### def segfunc(x, y): return max(x,y) ################# #####ide_ele##### ide_ele = 0 ################# class SegTree: """ init(init_val, ide_ele): 配列init_valで初期化 O(N) update(k, x): k番目の値をxに更新 O(logN) query(l, r): 区間[l, r)をsegfuncしたものを返す O(logN) """ def __init__(self, init_val, segfunc, ide_ele): """ init_val: 配列の初期値 segfunc: 区間にしたい操作 ide_ele: 単位元 n: 要素数 num: n以上の最小の2のべき乗 tree: セグメント木(1-index) """ n = len(init_val) self.segfunc = segfunc self.ide_ele = ide_ele self.num = 1 << (n - 1).bit_length() self.tree = [ide_ele] * 2 * self.num # 配列の値を葉にセット for i in range(n): self.tree[self.num + i] = init_val[i] # 構築していく for i in range(self.num - 1, 0, -1): self.tree[i] = self.segfunc(self.tree[2 * i], self.tree[2 * i + 1]) def update(self, k, x): """ k番目の値をxに更新 k: index(0-index) x: update value """ k += self.num self.tree[k] = x while k > 1: self.tree[k >> 1] = self.segfunc(self.tree[k], self.tree[k ^ 1]) k >>= 1 def query(self, l, r): """ [l, r)のsegfuncしたものを得る l: index(0-index) r: index(0-index) """ res = self.ide_ele l += self.num r += self.num while l < r: if l & 1: res = self.segfunc(res, self.tree[l]) l += 1 if r & 1: res = self.segfunc(res, self.tree[r - 1]) l >>= 1 r >>= 1 return res import sys #sys.setrecursionlimit(500000) def I(): return int(sys.stdin.readline().rstrip()) def MI(): return map(int,sys.stdin.readline().rstrip().split()) def TI(): return tuple(map(int,sys.stdin.readline().rstrip().split())) def LI(): return list(map(int,sys.stdin.readline().rstrip().split())) def S(): return sys.stdin.readline().rstrip() def LS(): return list(sys.stdin.readline().rstrip()) #for i, pi in enumerate(p): from collections import defaultdict,deque import bisect import itertools dic = defaultdict(int) d = deque() YN = ['No','Yes'] A = LS() N = len(A) for i in range(N+1): check = 1 for j in range(N): a = N+i-1-j if a >= N: continue if A[j] != A[a]: check = 0 break if check: ans = i+N break #print(ans) answer = A+[0]*(ans-N) #print(answer) for j in range(ans-N): answer[-j-1] = A[j] print("".join(answer))