結果

問題 No.1617 Palindrome Removal
ユーザー tatt61880tatt61880
提出日時 2021-07-23 04:18:06
言語 Kuin
(KuinC++ v.2021.9.17)
結果
AC  
実行時間 140 ms / 2,000 ms
コード長 336 bytes
コンパイル時間 2,207 ms
コンパイル使用メモリ 146,424 KB
実行使用メモリ 8,148 KB
最終ジャッジ日時 2024-09-16 12:40:52
合計ジャッジ時間 4,263 ms
ジャッジサーバーID
(参考情報)
judge4 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 84 ms
8,024 KB
testcase_01 AC 88 ms
7,980 KB
testcase_02 AC 83 ms
8,020 KB
testcase_03 AC 81 ms
8,024 KB
testcase_04 AC 91 ms
8,024 KB
testcase_05 AC 74 ms
8,024 KB
testcase_06 AC 15 ms
8,148 KB
testcase_07 AC 11 ms
8,020 KB
testcase_08 AC 2 ms
6,940 KB
testcase_09 AC 1 ms
6,940 KB
testcase_10 AC 126 ms
8,028 KB
testcase_11 AC 109 ms
8,024 KB
testcase_12 AC 137 ms
7,912 KB
testcase_13 AC 140 ms
8,028 KB
testcase_14 AC 2 ms
6,944 KB
testcase_15 AC 2 ms
6,940 KB
testcase_16 AC 2 ms
6,940 KB
testcase_17 AC 1 ms
6,940 KB
testcase_18 AC 1 ms
6,944 KB
testcase_19 AC 1 ms
6,940 KB
testcase_20 AC 1 ms
6,940 KB
testcase_21 AC 2 ms
6,940 KB
testcase_22 AC 2 ms
6,940 KB
testcase_23 AC 2 ms
6,944 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
			if(^s = 3)
				do ans :: -1
			else
				do ans :: ^s - 2
			end if
		end if
	end if
	do cui@print("\{ans}\n")
end func
0