結果

問題 No.1825 Except One
ユーザー yudedakoyudedako
提出日時 2022-01-31 16:48:20
言語 Scala(Beta)
(3.4.0)
結果
AC  
実行時間 1,082 ms / 3,000 ms
コード長 536 bytes
コンパイル時間 11,678 ms
コンパイル使用メモリ 266,152 KB
実行使用メモリ 63,732 KB
最終ジャッジ日時 2024-06-11 09:00:19
合計ジャッジ時間 41,656 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 828 ms
63,528 KB
testcase_01 AC 873 ms
63,328 KB
testcase_02 AC 827 ms
63,508 KB
testcase_03 AC 848 ms
63,508 KB
testcase_04 AC 900 ms
63,192 KB
testcase_05 AC 874 ms
63,544 KB
testcase_06 AC 854 ms
63,392 KB
testcase_07 AC 876 ms
63,464 KB
testcase_08 AC 835 ms
63,248 KB
testcase_09 AC 827 ms
63,432 KB
testcase_10 AC 855 ms
63,732 KB
testcase_11 AC 834 ms
63,480 KB
testcase_12 AC 867 ms
63,292 KB
testcase_13 AC 853 ms
63,196 KB
testcase_14 AC 825 ms
63,480 KB
testcase_15 AC 829 ms
63,460 KB
testcase_16 AC 838 ms
63,384 KB
testcase_17 AC 827 ms
63,244 KB
testcase_18 AC 818 ms
63,400 KB
testcase_19 AC 838 ms
63,476 KB
testcase_20 AC 838 ms
63,284 KB
testcase_21 AC 804 ms
63,376 KB
testcase_22 AC 1,082 ms
63,588 KB
testcase_23 AC 829 ms
63,440 KB
testcase_24 AC 842 ms
63,560 KB
testcase_25 AC 847 ms
63,496 KB
testcase_26 AC 825 ms
63,532 KB
testcase_27 AC 848 ms
63,368 KB
testcase_28 AC 872 ms
63,684 KB
testcase_29 AC 825 ms
63,460 KB
testcase_30 AC 856 ms
63,376 KB
testcase_31 AC 832 ms
63,344 KB
testcase_32 AC 841 ms
63,488 KB
testcase_33 AC 862 ms
63,308 KB
testcase_34 AC 840 ms
63,436 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import scala.io.StdIn.*
import scala.util.chaining.*
import scala.math.*

@main def main =
  val n = readLine().toInt
  val num = readLine().split(' ').map(_.toInt)
  var result = 0L
  for count <- 0 to 200 do
    val minusCount = Array.fill(count + 1){0L}.tap(array => array(0) = 1)
    for a <- num do
      if a <= count then
        val diff = count - a
        for i <- count to diff by -1 do
          minusCount(i) += minusCount(i - diff)
    result += minusCount(count)
  result -= num.count(_ == 0) * 201 + 1
  println(result)
0