結果
問題 | No.586 ダブルブッキング |
ユーザー | rky |
提出日時 | 2017-11-26 10:44:51 |
言語 | Kotlin (1.9.23) |
結果 |
AC
|
実行時間 | 339 ms / 2,000 ms |
コード長 | 566 bytes |
コンパイル時間 | 11,656 ms |
コンパイル使用メモリ | 432,040 KB |
実行使用メモリ | 57,428 KB |
最終ジャッジ日時 | 2024-04-30 16:26:27 |
合計ジャッジ時間 | 14,443 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 326 ms
55,172 KB |
testcase_01 | AC | 326 ms
55,152 KB |
testcase_02 | AC | 330 ms
55,312 KB |
testcase_03 | AC | 333 ms
57,364 KB |
testcase_04 | AC | 332 ms
55,344 KB |
testcase_05 | AC | 339 ms
57,428 KB |
testcase_06 | AC | 330 ms
55,344 KB |
testcase_07 | AC | 325 ms
55,268 KB |
コンパイルメッセージ
Main.kt:25:10: warning: parameter 'args' is never used fun main(args: Array<String>){ ^
ソースコード
import java.util.Scanner var input = Scanner(System. `in`) fun roomNumber(list: MutableList<Int>, testCase: Int, set: MutableSet<Int>){ for(i in 1..testCase){ var num = input.nextInt() list.add(num) set.add(num) } } fun run(){ var yuki: Int = input.nextInt() var transfer: Int = input.nextInt() var testCase: Int = input.nextInt() var list: MutableList<Int> = mutableListOf() var set: MutableSet<Int> = mutableSetOf() roomNumber(list, testCase, set) println( (list.size - set.size) * (yuki + transfer) ) } fun main(args: Array<String>){ run() }