結果

問題 No.99 ジャンピング駒
ユーザー tatt61880tatt61880
提出日時 2019-03-19 19:41:31
言語 Kuin
(KuinC++ v.2021.9.17)
結果
AC  
実行時間 72 ms / 5,000 ms
コード長 415 bytes
コンパイル時間 2,416 ms
コンパイル使用メモリ 150,072 KB
実行使用メモリ 19,776 KB
最終ジャッジ日時 2024-09-16 09:58:18
合計ジャッジ時間 3,459 ms
ジャッジサーバーID
(参考情報)
judge6 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 70 ms
19,648 KB
testcase_01 AC 70 ms
19,644 KB
testcase_02 AC 72 ms
19,648 KB
testcase_03 AC 72 ms
19,644 KB
testcase_04 AC 72 ms
19,648 KB
testcase_05 AC 71 ms
19,776 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

func main()
	var N: int :: cui@input().toInt(&)
	var _: [][]char :: cui@input().split(" ")
	var st: stack<int> :: #stack<int>
	do st.add(_[0].toInt(&))
	for i(1, N - 1)
		var x: int :: _[i].toInt(&)
		if(^st = 0)
			do st.add(x)
			skip i
		end if
		var xPeek: int :: st.peek()
		if((xPeek - x) % 2 = 0)
			do st.add(x)
		else
			do st.get()
		end if
	end for
	var ans: int :: ^st
	do cui@print("\{ans}\n")
end func
0