結果

問題 No.1792 科学の甲子園
ユーザー yudedakoyudedako
提出日時 2022-01-26 12:56:01
言語 Scala(Beta)
(3.4.0)
結果
AC  
実行時間 1,319 ms / 4,000 ms
コード長 680 bytes
コンパイル時間 13,538 ms
コンパイル使用メモリ 259,708 KB
実行使用メモリ 66,448 KB
最終ジャッジ日時 2024-11-26 17:58:17
合計ジャッジ時間 50,203 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,092 ms
64,260 KB
testcase_01 AC 1,087 ms
64,084 KB
testcase_02 AC 1,077 ms
63,808 KB
testcase_03 AC 1,090 ms
63,952 KB
testcase_04 AC 1,096 ms
64,128 KB
testcase_05 AC 1,096 ms
64,124 KB
testcase_06 AC 1,092 ms
64,024 KB
testcase_07 AC 1,102 ms
63,828 KB
testcase_08 AC 1,108 ms
64,308 KB
testcase_09 AC 1,199 ms
66,000 KB
testcase_10 AC 1,092 ms
64,148 KB
testcase_11 AC 1,319 ms
66,252 KB
testcase_12 AC 1,309 ms
66,396 KB
testcase_13 AC 1,295 ms
66,448 KB
testcase_14 AC 1,312 ms
66,236 KB
testcase_15 AC 1,279 ms
66,092 KB
testcase_16 AC 1,109 ms
64,368 KB
testcase_17 AC 1,103 ms
64,064 KB
testcase_18 AC 1,100 ms
64,144 KB
testcase_19 AC 1,280 ms
66,332 KB
testcase_20 AC 1,304 ms
66,308 KB
testcase_21 AC 1,294 ms
66,152 KB
testcase_22 AC 1,304 ms
66,120 KB
testcase_23 AC 1,268 ms
66,276 KB
testcase_24 AC 1,065 ms
63,748 KB
testcase_25 AC 1,077 ms
64,052 KB
testcase_26 AC 1,104 ms
64,096 KB
testcase_27 AC 1,298 ms
66,280 KB
testcase_28 AC 1,305 ms
66,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import scala.annotation.tailrec
import scala.io.StdIn.*
import scala.math.max
@main def main =
  val n = readLine().toInt
  val students = Array.fill(n){
    readLine().split(' ').map(_.toLong)
  }
  val maxScore = Array.tabulate(1 << 6) { pattern =>
    val subject = (0 until 6).filter { i => ((pattern >> i) & 1) == 1 }
    students.map { score => subject.map(score).product }.max
  }
  var result = 0L
  for patternN <- 0 until (1 << 12) do
    val pattern = Array.tabulate(4){i =>
      (0 until 6).map{j => if ((patternN >> (2 * j)) & 3) == i then 1 << j else 0}.sum
    }
    val current = pattern.map(maxScore).product
    result = max(result, current)
  println(result)
0