結果

問題 No.588 空白と回文
ユーザー maspymaspy
提出日時 2020-02-02 21:09:55
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 540 ms / 2,000 ms
コード長 638 bytes
コンパイル時間 83 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 44,348 KB
最終ジャッジ日時 2024-09-18 21:25:07
合計ジャッジ時間 14,783 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 522 ms
43,832 KB
testcase_01 AC 516 ms
43,964 KB
testcase_02 AC 522 ms
43,832 KB
testcase_03 AC 529 ms
43,836 KB
testcase_04 AC 516 ms
43,832 KB
testcase_05 AC 535 ms
44,212 KB
testcase_06 AC 533 ms
44,212 KB
testcase_07 AC 530 ms
43,964 KB
testcase_08 AC 538 ms
44,228 KB
testcase_09 AC 520 ms
43,836 KB
testcase_10 AC 522 ms
44,220 KB
testcase_11 AC 524 ms
44,084 KB
testcase_12 AC 523 ms
44,212 KB
testcase_13 AC 518 ms
43,956 KB
testcase_14 AC 518 ms
44,348 KB
testcase_15 AC 525 ms
43,960 KB
testcase_16 AC 524 ms
44,216 KB
testcase_17 AC 533 ms
43,832 KB
testcase_18 AC 522 ms
44,080 KB
testcase_19 AC 520 ms
43,836 KB
testcase_20 AC 537 ms
43,956 KB
testcase_21 AC 532 ms
43,960 KB
testcase_22 AC 532 ms
43,840 KB
testcase_23 AC 540 ms
44,224 KB
testcase_24 AC 529 ms
43,968 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
read = sys.stdin.buffer.read
readline = sys.stdin.buffer.readline
readlines = sys.stdin.buffer.readlines

import numpy as np

S = np.frombuffer(read().rstrip(),'S1')

N = len(S)
answer = 0
# 中心が n の場合
for n in range(N):
    left = S[:n][::-1]
    right = S[n+1:]
    L = min(len(left), len(right))
    x = np.count_nonzero(left[:L] == right[:L]) * 2 + 1
    if answer < x:
        answer = x
# 中心が間の場合
for n in range(N):
    left = S[:n][::-1]
    right = S[n:]
    L = min(len(left), len(right))
    x = np.count_nonzero(left[:L] == right[:L]) * 2
    if answer < x:
        answer = x

print(answer)
0