結果

問題 No.1026 OGAWA's New Keyboard
ユーザー tatt61880tatt61880
提出日時 2020-04-23 22:00:30
言語 Kuin
(KuinC++ v.2021.9.17)
結果
AC  
実行時間 66 ms / 1,000 ms
コード長 524 bytes
コンパイル時間 2,154 ms
コンパイル使用メモリ 146,208 KB
実行使用メモリ 8,192 KB
最終ジャッジ日時 2024-09-16 10:42:03
合計ジャッジ時間 3,684 ms
ジャッジサーバーID
(参考情報)
judge6 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 66 ms
8,192 KB
testcase_05 AC 4 ms
5,376 KB
testcase_06 AC 5 ms
5,376 KB
testcase_07 AC 43 ms
6,400 KB
testcase_08 AC 3 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 2 ms
5,376 KB
testcase_12 AC 2 ms
5,376 KB
testcase_13 AC 2 ms
5,376 KB
testcase_14 AC 1 ms
5,376 KB
testcase_15 AC 2 ms
5,376 KB
testcase_16 AC 2 ms
5,376 KB
testcase_17 AC 18 ms
5,376 KB
testcase_18 AC 2 ms
5,376 KB
testcase_19 AC 16 ms
5,376 KB
testcase_20 AC 1 ms
5,376 KB
testcase_21 AC 2 ms
5,376 KB
testcase_22 AC 2 ms
5,376 KB
testcase_23 AC 2 ms
5,376 KB
testcase_24 AC 34 ms
6,016 KB
testcase_25 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

func main()
	var n: int :: cui@inputInt()
	var t: []int :: #[n]int
	var s: []char :: #[n]char
	var cnt: int :: 0
	for i(0, n - 1)
		do t[i] :: cui@inputInt()
		if(t[i] = 1)
			do cnt :+ 1
		end if
		do s[i] :: cui@inputChar()
	end for
	var s1: []char :: #[cnt]char
	var s2: []char :: #[n - cnt]char
	var iS1: int :: 0
	var iS2: int :: 0
	for i(0, n - 1)
		if(t[i] = 1)
			do s1[iS1] :: s[i]
			do iS1 :+ 1
		else
			do s2[iS2] :: s[i]
			do iS2 :+ 1
		end if
	end for
	do s1.reverse()
	do cui@print("\{s1}\{s2}\n")
end func
0