結果

問題 No.1463 Hungry Kanten
ユーザー rhincodon66rhincodon66
提出日時 2021-04-02 21:45:14
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 745 ms / 2,000 ms
コード長 791 bytes
コンパイル時間 15,569 ms
コンパイル使用メモリ 446,272 KB
実行使用メモリ 116,792 KB
最終ジャッジ日時 2024-06-06 09:17:52
合計ジャッジ時間 22,860 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 294 ms
51,432 KB
testcase_01 AC 297 ms
51,440 KB
testcase_02 AC 415 ms
70,364 KB
testcase_03 AC 527 ms
83,204 KB
testcase_04 AC 320 ms
52,924 KB
testcase_05 AC 745 ms
116,792 KB
testcase_06 AC 293 ms
51,568 KB
testcase_07 AC 290 ms
51,704 KB
testcase_08 AC 298 ms
51,692 KB
testcase_09 AC 292 ms
51,660 KB
testcase_10 AC 297 ms
51,952 KB
testcase_11 AC 301 ms
52,016 KB
testcase_12 AC 297 ms
52,232 KB
testcase_13 AC 316 ms
53,284 KB
testcase_14 AC 345 ms
55,748 KB
testcase_15 AC 340 ms
59,620 KB
testcase_16 AC 393 ms
72,692 KB
testcase_17 AC 442 ms
86,596 KB
testcase_18 AC 415 ms
82,856 KB
testcase_19 AC 621 ms
103,592 KB
testcase_20 AC 662 ms
102,044 KB
testcase_21 AC 301 ms
51,804 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:7:10: warning: parameter 'args' is never used
fun main(args:Array<String>) {
         ^

ソースコード

diff #

import java.math.BigInteger
import java.util.*
import javax.swing.plaf.SeparatorUI
import kotlin.math.ceil
import java.util.Queue as Queue1

fun main(args:Array<String>) {
    solve()
}

fun solve(){
    val (n,k) = readLine()!!.split(" ").map{it.toInt()}.toIntArray()
    val a = readLine()!!.split(" ").map{it.toInt()}.toIntArray()
    val s = HashSet<BigInteger>()
    for(mask in 0 until (1 shl n)){
        var sum = 0
        var sum2 = 1.toBigInteger()
        var cnt = 0
        for(i in 0 until n){
            if((mask shr i) and 1 == 1){
                sum += a[i]
                sum2 *= a[i].toBigInteger()
                cnt++
            }
        }
        if(cnt >= k){
            s.add(sum.toBigInteger())
            s.add(sum2)
        }
    }
    println(s.size)
}

0