結果

問題 No.1617 Palindrome Removal
ユーザー tatt61880tatt61880
提出日時 2021-07-23 04:16:50
言語 Kuin
(KuinC++ v.2021.9.17)
結果
WA  
実行時間 -
コード長 286 bytes
コンパイル時間 2,291 ms
コンパイル使用メモリ 144,504 KB
実行使用メモリ 8,024 KB
最終ジャッジ日時 2024-09-16 12:40:36
合計ジャッジ時間 4,433 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 79 ms
7,900 KB
testcase_01 AC 85 ms
7,896 KB
testcase_02 AC 81 ms
7,852 KB
testcase_03 AC 78 ms
7,896 KB
testcase_04 AC 87 ms
7,772 KB
testcase_05 AC 71 ms
8,020 KB
testcase_06 AC 14 ms
7,900 KB
testcase_07 AC 10 ms
8,024 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 1 ms
5,376 KB
testcase_10 AC 114 ms
7,880 KB
testcase_11 AC 101 ms
7,768 KB
testcase_12 AC 124 ms
7,896 KB
testcase_13 AC 128 ms
7,896 KB
testcase_14 AC 2 ms
5,376 KB
testcase_15 AC 2 ms
5,376 KB
testcase_16 AC 2 ms
5,376 KB
testcase_17 AC 1 ms
5,376 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 2 ms
5,376 KB
testcase_21 AC 1 ms
5,376 KB
testcase_22 AC 1 ms
5,376 KB
testcase_23 AC 1 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

func main()
	var s: []char :: cui@input()
	var t: []char :: ##s
	do t.reverse()
	var ans: int
	if(s <> t)
		do ans :: ^s
	else
		do s.sort()
		do t.sort()
		do t.reverse()
		if(s = t)
			do ans :: -(^s % 2)
		else
			do ans :: ^s - 2
		end if
	end if
	do cui@print("\{ans}\n")
end func
0