結果
問題 | No.542 1円玉と5円玉 |
ユーザー | R_F |
提出日時 | 2017-12-14 11:56:30 |
言語 | Kotlin (1.9.23) |
結果 |
AC
|
実行時間 | 390 ms / 2,000 ms |
コード長 | 925 bytes |
コンパイル時間 | 12,144 ms |
コンパイル使用メモリ | 440,076 KB |
実行使用メモリ | 61,480 KB |
最終ジャッジ日時 | 2024-04-30 16:44:49 |
合計ジャッジ時間 | 16,443 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 322 ms
61,068 KB |
testcase_01 | AC | 318 ms
61,048 KB |
testcase_02 | AC | 321 ms
61,156 KB |
testcase_03 | AC | 313 ms
57,676 KB |
testcase_04 | AC | 314 ms
61,128 KB |
testcase_05 | AC | 350 ms
61,292 KB |
testcase_06 | AC | 360 ms
61,336 KB |
testcase_07 | AC | 361 ms
61,344 KB |
testcase_08 | AC | 347 ms
61,480 KB |
testcase_09 | AC | 347 ms
61,304 KB |
testcase_10 | AC | 324 ms
61,176 KB |
testcase_11 | AC | 331 ms
61,048 KB |
testcase_12 | AC | 390 ms
61,416 KB |
コンパイルメッセージ
Main.kt:35:10: warning: parameter 'args' is never used fun main(args: Array<String>) { ^
ソースコード
import java.util.Scanner class No542() { var input = Scanner(System. `in`) var oneYenCount = input.nextInt() var fiveYenCount = input.nextInt() var oneYenList = yenCount(oneYenCount, 1) var fiveYenList = yenCount(fiveYenCount, 5) var list = fullSearch() fun yenCount(count: Int, plus: Int): MutableList<Int> { var sum = plus var list: MutableList<Int> = mutableListOf() for (i in 0..count - 1) { list.add(sum) sum += plus } return list } fun fullSearch(): MutableList<Int> { var list: MutableList<Int> = mutableListOf() for (i in 0..oneYenCount - 1) { for (j in 0..fiveYenCount - 1) { oneYenList[i] += fiveYenList[j] list.add(oneYenList[i]) oneYenList[i] -= fiveYenList[j] } } return list } } fun main(args: Array<String>) { var no542 = No542() var result = (no542.list + no542.oneYenList + no542.fiveYenList).distinct().sorted() result.forEach { println(it) } }