結果
問題 | No.5 数字のブロック |
ユーザー | KisaragiEffective |
提出日時 | 2019-11-17 20:37:21 |
言語 | Kotlin (1.9.23) |
結果 |
WA
|
実行時間 | - |
コード長 | 132 bytes |
コンパイル時間 | 11,244 ms |
コンパイル使用メモリ | 431,768 KB |
実行使用メモリ | 63,028 KB |
最終ジャッジ日時 | 2024-09-25 06:05:59 |
合計ジャッジ時間 | 22,779 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | AC | 269 ms
56,864 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
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 | - |
testcase_19 | WA | - |
testcase_20 | AC | 278 ms
60,448 KB |
testcase_21 | AC | 280 ms
60,412 KB |
testcase_22 | AC | 277 ms
60,204 KB |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | AC | 278 ms
60,424 KB |
testcase_27 | AC | 281 ms
60,280 KB |
testcase_28 | AC | 268 ms
56,932 KB |
testcase_29 | WA | - |
testcase_30 | WA | - |
testcase_31 | AC | 276 ms
56,928 KB |
testcase_32 | AC | 275 ms
56,892 KB |
testcase_33 | AC | 278 ms
56,936 KB |
ソースコード
fun main(){val w=readLine()!!.toInt() readLine() println(readLine()!!.split(" ").map{it.toInt()}.sorted().takeWhile{it<=w}.count())}