結果
問題 | No.5 数字のブロック |
ユーザー | Keita Yamada |
提出日時 | 2021-04-12 22:22:51 |
言語 | Kotlin (1.9.23) |
結果 |
WA
|
実行時間 | - |
コード長 | 484 bytes |
コンパイル時間 | 12,573 ms |
コンパイル使用メモリ | 442,996 KB |
実行使用メモリ | 299,320 KB |
最終ジャッジ日時 | 2024-06-28 17:55:36 |
合計ジャッジ時間 | 76,021 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 315 ms
55,300 KB |
testcase_01 | WA | - |
testcase_02 | AC | 317 ms
55,052 KB |
testcase_03 | RE | - |
testcase_04 | WA | - |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | WA | - |
testcase_10 | RE | - |
testcase_11 | WA | - |
testcase_12 | RE | - |
testcase_13 | RE | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | RE | - |
testcase_17 | RE | - |
testcase_18 | RE | - |
testcase_19 | RE | - |
testcase_20 | AC | 312 ms
55,816 KB |
testcase_21 | AC | 311 ms
55,308 KB |
testcase_22 | AC | 312 ms
55,204 KB |
testcase_23 | AC | 316 ms
55,036 KB |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | AC | 314 ms
58,140 KB |
testcase_27 | AC | 312 ms
55,352 KB |
testcase_28 | AC | 330 ms
55,720 KB |
testcase_29 | WA | - |
testcase_30 | WA | - |
testcase_31 | AC | 326 ms
56,044 KB |
testcase_32 | AC | 321 ms
55,868 KB |
testcase_33 | AC | 314 ms
55,156 KB |
コンパイルメッセージ
Main.kt:3:9: warning: variable 'N' is never used val N = readLine()!!.toInt() ^ Main.kt:16:42: warning: unnecessary non-null assertion (!!) on a non-null receiver of type Pair<Int, Int> println(dp.map{ it.maxBy{ it.second }!!.second }.max()) ^
ソースコード
fun main() { val L = readLine()!!.toInt() val N = readLine()!!.toInt() val W = readLine()!!.split(" ").map(String::toInt) var dp = Array(W.size + 1) { Array(L + 1){ 0 to 0 } } for(i in 1..W.size) for(k in 0..L) { if(W[i-1] + dp[i-1][k].first <= k){ dp[i][k] = (dp[i-1][k].first + W[i-1] to dp[i-1][k].second + 1) }else{ dp[i][k] = dp[i-1][k] } } println(dp.map{ it.maxBy{ it.second }!!.second }.max()) }