結果
問題 | No.1021 Children in Classrooms |
ユーザー | da_louis |
提出日時 | 2020-04-10 23:15:50 |
言語 | Kotlin (1.9.23) |
結果 |
AC
|
実行時間 | 912 ms / 2,000 ms |
コード長 | 1,072 bytes |
コンパイル時間 | 13,319 ms |
コンパイル使用メモリ | 445,580 KB |
実行使用メモリ | 95,008 KB |
最終ジャッジ日時 | 2024-09-16 00:21:05 |
合計ジャッジ時間 | 27,821 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 350 ms
55,328 KB |
testcase_01 | AC | 352 ms
55,300 KB |
testcase_02 | AC | 349 ms
55,192 KB |
testcase_03 | AC | 390 ms
55,788 KB |
testcase_04 | AC | 399 ms
56,048 KB |
testcase_05 | AC | 393 ms
55,916 KB |
testcase_06 | AC | 403 ms
56,192 KB |
testcase_07 | AC | 413 ms
56,088 KB |
testcase_08 | AC | 401 ms
56,052 KB |
testcase_09 | AC | 910 ms
93,248 KB |
testcase_10 | AC | 912 ms
93,312 KB |
testcase_11 | AC | 884 ms
93,224 KB |
testcase_12 | AC | 889 ms
93,060 KB |
testcase_13 | AC | 861 ms
92,344 KB |
testcase_14 | AC | 887 ms
95,008 KB |
testcase_15 | AC | 847 ms
88,728 KB |
testcase_16 | AC | 866 ms
92,912 KB |
testcase_17 | AC | 858 ms
87,816 KB |
testcase_18 | AC | 879 ms
93,292 KB |
testcase_19 | AC | 490 ms
58,480 KB |
コンパイルメッセージ
Main.kt:2:10: warning: parameter 'args' is never used fun main(args: Array<String>) = p1021() ^ Main.kt:6:10: warning: variable 'n' is never used val (n, m) = readLine()!!.split(' ').map { it.toInt() } ^ Main.kt:6:13: warning: variable 'm' is never used val (n, m) = readLine()!!.split(' ').map { it.toInt() } ^
ソースコード
@ExperimentalStdlibApi fun main(args: Array<String>) = p1021() @ExperimentalStdlibApi fun p1021() { val (n, m) = readLine()!!.split(' ').map { it.toInt() } val aList = readLine()!!.split(' ').map { it.toLong() } val s = readLine()!! val queue = ArrayDeque(aList) var left = 0 var right = aList.lastIndex for (c in s) { if (c == 'R') { if (right == aList.lastIndex && queue.size >= 2) { queue.addLast(queue.removeLast() + queue.removeLast()) } left = Math.min(left + 1, aList.lastIndex) right = Math.min(right + 1, aList.lastIndex) } else { if (left == 0 && queue.size >= 2) { queue.addFirst(queue.removeFirst() + queue.removeFirst()) } left = Math.max(left - 1, 0) right = Math.max(right - 1, 0) } } val answer = buildList { addAll(List(left) { 0 }) addAll(queue) addAll(List(aList.lastIndex - right) { 0 }) }.joinToString(" ") println(answer) }