結果
問題 | No.1021 Children in Classrooms |
ユーザー | da_louis |
提出日時 | 2020-04-10 23:14:27 |
言語 | Kotlin (1.9.23) |
結果 |
AC
|
実行時間 | 867 ms / 2,000 ms |
コード長 | 1,012 bytes |
コンパイル時間 | 15,278 ms |
コンパイル使用メモリ | 448,704 KB |
実行使用メモリ | 94,644 KB |
最終ジャッジ日時 | 2024-09-16 00:13:19 |
合計ジャッジ時間 | 29,662 ms |
ジャッジサーバーID (参考情報) |
judge6 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 348 ms
54,960 KB |
testcase_01 | AC | 350 ms
55,040 KB |
testcase_02 | AC | 349 ms
55,080 KB |
testcase_03 | AC | 386 ms
55,648 KB |
testcase_04 | AC | 396 ms
55,640 KB |
testcase_05 | AC | 389 ms
55,660 KB |
testcase_06 | AC | 387 ms
55,644 KB |
testcase_07 | AC | 396 ms
55,920 KB |
testcase_08 | AC | 393 ms
55,896 KB |
testcase_09 | AC | 843 ms
93,088 KB |
testcase_10 | AC | 850 ms
92,840 KB |
testcase_11 | AC | 860 ms
93,024 KB |
testcase_12 | AC | 867 ms
94,452 KB |
testcase_13 | AC | 858 ms
93,520 KB |
testcase_14 | AC | 859 ms
94,644 KB |
testcase_15 | AC | 790 ms
88,248 KB |
testcase_16 | AC | 804 ms
88,192 KB |
testcase_17 | AC | 818 ms
87,180 KB |
testcase_18 | AC | 863 ms
93,104 KB |
testcase_19 | AC | 482 ms
58,340 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 = (List(left) { 0 } + queue + List(aList.lastIndex - right) { 0 }).joinToString(" ") println(answer) }