結果
問題 | No.161 制限ジャンケン |
ユーザー | バカらっく |
提出日時 | 2019-11-12 03:38:16 |
言語 | Kotlin (1.9.23) |
結果 |
WA
|
実行時間 | - |
コード長 | 804 bytes |
コンパイル時間 | 14,028 ms |
コンパイル使用メモリ | 444,008 KB |
実行使用メモリ | 60,512 KB |
最終ジャッジ日時 | 2024-09-16 05:53:37 |
合計ジャッジ時間 | 19,206 ms |
ジャッジサーバーID (参考情報) |
judge6 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 272 ms
60,268 KB |
testcase_02 | AC | 279 ms
60,172 KB |
testcase_03 | AC | 275 ms
60,156 KB |
testcase_04 | WA | - |
testcase_05 | AC | 276 ms
60,156 KB |
testcase_06 | AC | 287 ms
60,148 KB |
testcase_07 | AC | 285 ms
60,136 KB |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
コンパイルメッセージ
Main.kt:3:10: warning: parameter 'arr' is never used fun main(arr:Array<String>) { ^
ソースコード
import java.util.* fun main(arr:Array<String>) { val gcp = readLine()!!.split(" ").map { it.toInt() }.toMutableList() val log = readLine()!! val gcp2 = listOf(log.count { it == 'G' }, log.count { it == 'C' }, log.count { it == 'P' }).toMutableList() var win = Math.min(gcp2[0], gcp[2]) win += Math.min(gcp2[1], gcp[0]) win += Math.min(gcp2[2], gcp[1]) gcp[0] = Math.max(0, gcp[0] - gcp2[1]) gcp[1] = Math.max(0, gcp[1] - gcp2[2]) gcp[2] = Math.max(0, gcp[2] - gcp2[0]) gcp2[0] = Math.max(0, gcp2[0] - gcp[2]) gcp2[1] = Math.max(0, gcp2[1] - gcp[0]) gcp2[2] = Math.max(0, gcp2[2] - gcp[1]) var draw = Math.min(gcp[0], gcp2[0]) draw += Math.min(gcp[1], gcp2[1]) draw += Math.min(gcp[2], gcp2[2]) val ans = win * 3 + draw println(ans) }