結果

問題 No.617 Nafmo、買い出しに行く
ユーザー 💕💖💞💕💖💞
提出日時 2018-02-17 09:41:07
言語 Kotlin
(1.9.23)
結果
WA  
実行時間 -
コード長 521 bytes
コンパイル時間 14,348 ms
コンパイル使用メモリ 441,312 KB
実行使用メモリ 290,348 KB
最終ジャッジ日時 2024-11-20 13:58:48
合計ジャッジ時間 52,629 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 TLE -
testcase_06 TLE -
testcase_07 TLE -
testcase_08 WA -
testcase_09 WA -
testcase_10 TLE -
testcase_11 TLE -
testcase_12 TLE -
testcase_13 TLE -
testcase_14 TLE -
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:1:10: warning: parameter 'args' is never used
fun main(args:Array<String>) {
         ^

ソースコード

diff #

fun main(args:Array<String>) {
  val (n, k) = readLine()!!.split(" ").map{ it.toInt() }
  val a = (1..n).map { 
    readLine()!!.toInt()
  }
  
  val b = Integer.parseInt("1".repeat(a.size), 2)

  println(b)

  val maxs = mutableListOf<Int>()
  (0..b).map { 
    val d = "%${a.size}s".format(Integer.toBinaryString(it)).replace(" ", "0")
    val m = d.toList().map { it.toString() }.zip(a).filter { it.first == "1" }.map { it.second }.sum()
    if( m <= k )
      maxs.add(m)
  }
  println( maxs.sorted()[maxs.size-1] )
}
0