結果

問題 No.1021 Children in Classrooms
ユーザー tatt61880tatt61880
提出日時 2021-02-24 22:11:26
言語 Kuin
(KuinC++ v.2021.9.17)
結果
AC  
実行時間 263 ms / 2,000 ms
コード長 518 bytes
コンパイル時間 2,339 ms
コンパイル使用メモリ 146,788 KB
実行使用メモリ 9,600 KB
最終ジャッジ日時 2024-09-16 11:39:05
合計ジャッジ時間 6,475 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 3 ms
5,376 KB
testcase_04 AC 4 ms
5,376 KB
testcase_05 AC 3 ms
5,376 KB
testcase_06 AC 4 ms
5,376 KB
testcase_07 AC 5 ms
5,376 KB
testcase_08 AC 4 ms
5,376 KB
testcase_09 AC 262 ms
9,472 KB
testcase_10 AC 263 ms
9,472 KB
testcase_11 AC 261 ms
9,472 KB
testcase_12 AC 262 ms
9,472 KB
testcase_13 AC 260 ms
9,472 KB
testcase_14 AC 258 ms
9,600 KB
testcase_15 AC 187 ms
9,208 KB
testcase_16 AC 189 ms
9,088 KB
testcase_17 AC 197 ms
9,216 KB
testcase_18 AC 250 ms
9,472 KB
testcase_19 AC 8 ms
8,064 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

func main()
	var n: int :: cui@inputInt()
	var m: int :: cui@inputInt()
	var a: []int :: #[m + n + m]int
	var l: int :: m
	var r: int :: m + n
	for i(0, n - 1)
		do a[m + i] :: cui@inputInt()
	end for
	var s: []char :: cui@input()
	for i(0, m - 1)
		if(s[i] = 'L')
			do a[l + 1] :+ a[l]
			do a[l] :: 0
			do l :+ 1
			do r :+ 1
		else
			do a[r - 2] :+ a[r - 1]
			do a[r - 1] :: 0
			do l :- 1
			do r :- 1
		end if
	end for
	for i(0, n - 1)
		do cui@print("\{a[l + i]}\{i = n - 1 ?("\n", " ")}")
	end for
end func
0