結果

問題 No.273 回文分解
ユーザー sasa8uyauyasasa8uyauya
提出日時 2024-09-05 10:34:07
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 147 bytes
コンパイル時間 531 ms
コンパイル使用メモリ 82,376 KB
実行使用メモリ 61,020 KB
最終ジャッジ日時 2024-09-05 10:34:10
合計ジャッジ時間 3,298 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 36 ms
52,760 KB
testcase_02 AC 37 ms
52,356 KB
testcase_03 AC 37 ms
52,604 KB
testcase_04 WA -
testcase_05 AC 37 ms
52,560 KB
testcase_06 AC 36 ms
53,036 KB
testcase_07 AC 37 ms
53,024 KB
testcase_08 AC 36 ms
53,540 KB
testcase_09 AC 36 ms
52,732 KB
testcase_10 AC 36 ms
52,464 KB
testcase_11 AC 37 ms
52,332 KB
testcase_12 AC 36 ms
52,880 KB
testcase_13 AC 37 ms
52,392 KB
testcase_14 AC 43 ms
61,020 KB
testcase_15 AC 36 ms
51,748 KB
testcase_16 AC 36 ms
53,496 KB
testcase_17 AC 35 ms
52,448 KB
testcase_18 WA -
testcase_19 AC 37 ms
53,220 KB
testcase_20 AC 37 ms
52,424 KB
testcase_21 AC 36 ms
53,136 KB
testcase_22 AC 36 ms
52,820 KB
testcase_23 WA -
testcase_24 AC 37 ms
52,960 KB
testcase_25 AC 38 ms
52,040 KB
testcase_26 AC 41 ms
60,732 KB
testcase_27 AC 36 ms
53,012 KB
testcase_28 AC 40 ms
59,528 KB
testcase_29 AC 41 ms
60,856 KB
testcase_30 AC 43 ms
60,844 KB
testcase_31 WA -
testcase_32 AC 37 ms
52,128 KB
testcase_33 AC 37 ms
52,756 KB
testcase_34 AC 37 ms
52,024 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

s=input()
n=len(s)
for w in reversed(range(1,n+1)):
	for l in range(n):
		r=l+w-1
		if r<n:
			t=s[l:r+1]
			if t==t[::-1]:
				print(w)
				exit()
0