結果
問題 | No.5017 Tool-assisted Shooting |
ユーザー |
![]() |
提出日時 | 2023-07-16 15:06:36 |
言語 | Kotlin (2.1.0) |
結果 |
AC
|
実行時間 | 362 ms / 2,000 ms |
コード長 | 1,391 bytes |
コンパイル時間 | 14,960 ms |
コンパイル使用メモリ | 426,864 KB |
実行使用メモリ | 70,996 KB |
スコア | 33 |
平均クエリ数 | 71.82 |
最終ジャッジ日時 | 2023-07-16 15:07:33 |
合計ジャッジ時間 | 50,883 ms |
ジャッジサーバーID (参考情報) |
judge12 / judge13 |
純コード判定しない問題か言語 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 100 |
コンパイルメッセージ
Main.kt:10:10: warning: parameter 'args' is never used fun main(args: Array<String>) { ^
ソースコード
private fun next() = readLine()!!private fun nextInt() = next().toInt()private fun nextLong() = next().toLong()private fun nextDouble() = next().toDouble()private fun nextList() = next().split(" ")private fun nextIntList() = next().split(" ").map { it.toInt() }.toIntArray()private fun nextLongList() = next().split(" ").map { it.toLong() }.toLongArray()private fun nextDoubleList() = next().split(" ").map { it.toDouble() }.toDoubleArray()fun main(args: Array<String>) {var turn = 0var enemyList = mutableListOf<Enemy>()var own = 12while (turn < 1000) {val n = nextInt()if (n == -1) {return}val newEnemyList = mutableListOf<Enemy>()for (enemy in enemyList) {val isAlive = enemy.nextTurn()if (isAlive) {newEnemyList.add(enemy)}}enemyList = newEnemyListfor (i in 0 until n) {val hpx = nextIntList()enemyList.add(Enemy(hpx[2], 59, hpx[0], hpx[1]))}val leftCount = enemyList.count { it.x > own }if (leftCount * 2 > enemyList.count()) {println("L")} else {println("R")}turn++}}class Enemy(var x: Int, var y: Int, var h: Int, var p: Int) {fun nextTurn(): Boolean {y--return y >= 0}}