結果

問題 No.797 Noelちゃんとピラミッド
ユーザー ikdikd
提出日時 2019-03-15 23:19:40
言語 Nim
(2.0.2)
結果
AC  
実行時間 176 ms / 2,000 ms
コード長 886 bytes
コンパイル時間 3,472 ms
コンパイル使用メモリ 65,664 KB
実行使用メモリ 11,776 KB
最終ジャッジ日時 2024-07-01 21:40:18
合計ジャッジ時間 10,749 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 172 ms
11,776 KB
testcase_04 AC 173 ms
11,776 KB
testcase_05 AC 172 ms
11,776 KB
testcase_06 AC 173 ms
11,776 KB
testcase_07 AC 173 ms
11,776 KB
testcase_08 AC 172 ms
11,776 KB
testcase_09 AC 172 ms
11,776 KB
testcase_10 AC 173 ms
11,776 KB
testcase_11 AC 173 ms
11,776 KB
testcase_12 AC 173 ms
11,776 KB
testcase_13 AC 172 ms
11,776 KB
testcase_14 AC 172 ms
11,776 KB
testcase_15 AC 173 ms
11,776 KB
testcase_16 AC 174 ms
11,776 KB
testcase_17 AC 176 ms
11,776 KB
testcase_18 AC 173 ms
11,776 KB
testcase_19 AC 173 ms
11,776 KB
testcase_20 AC 173 ms
11,776 KB
testcase_21 AC 173 ms
11,776 KB
testcase_22 AC 173 ms
11,776 KB
testcase_23 AC 125 ms
9,600 KB
testcase_24 AC 40 ms
5,376 KB
testcase_25 AC 105 ms
8,576 KB
testcase_26 AC 99 ms
8,576 KB
testcase_27 AC 169 ms
11,776 KB
testcase_28 AC 152 ms
11,136 KB
testcase_29 AC 23 ms
5,376 KB
testcase_30 AC 37 ms
5,376 KB
testcase_31 AC 124 ms
9,600 KB
testcase_32 AC 53 ms
5,632 KB
testcase_33 AC 102 ms
8,448 KB
testcase_34 AC 72 ms
6,784 KB
testcase_35 AC 172 ms
11,776 KB
testcase_36 AC 20 ms
5,376 KB
testcase_37 AC 151 ms
11,136 KB
testcase_38 AC 159 ms
11,776 KB
testcase_39 AC 101 ms
8,448 KB
testcase_40 AC 20 ms
5,376 KB
testcase_41 AC 29 ms
5,376 KB
testcase_42 AC 97 ms
8,448 KB
testcase_43 AC 2 ms
5,376 KB
testcase_44 AC 1 ms
5,376 KB
testcase_45 AC 1 ms
5,376 KB
testcase_46 AC 2 ms
5,376 KB
testcase_47 AC 2 ms
5,376 KB
testcase_48 AC 2 ms
5,376 KB
testcase_49 AC 2 ms
5,376 KB
testcase_50 AC 2 ms
5,376 KB
testcase_51 AC 2 ms
5,376 KB
testcase_52 AC 2 ms
5,376 KB
testcase_53 AC 2 ms
5,376 KB
testcase_54 AC 2 ms
5,376 KB
testcase_55 AC 2 ms
5,376 KB
testcase_56 AC 2 ms
5,376 KB
testcase_57 AC 2 ms
5,376 KB
testcase_58 AC 1 ms
5,376 KB
testcase_59 AC 2 ms
5,376 KB
testcase_60 AC 2 ms
5,376 KB
testcase_61 AC 1 ms
5,376 KB
testcase_62 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import strutils, sequtils

proc modpow(a, x, mo: int64): int64 =
  if x == 0:
    return 1
  elif x == 1:
    return a
  elif x mod 2 == 0:
    return modpow(a * a mod mo, x div 2, mo)
  else:
    return a * modpow(a, x - 1, mo) mod mo

proc cmb(n, k: int, fact: seq[int64], mo: int64): int64 =
  if n < k:
    return 0
  elif k == 0:
    return 1
  elif n == k:
    return 1
  else:
    result = fact[n]
    result = result * modpow(fact[k], mo - 2, mo) mod mo
    result = result * modpow(fact[n - k], mo - 2, mo) mod mo
    return result

proc main() =
  let
    n = stdin.readLine.strip.parseInt
    a = stdin.readLine.strip.split.map(parseInt)
    mo = 1000000000 + 7
  var fact = newSeq[int64](n + 1)
  fact[0] = 1
  for i in 1..n:
    fact[i] = fact[i - 1] * i mod mo
  var ans: int64 = 0
  for k, it in a:
    ans = (ans + cmb(n - 1, k, fact, mo) * it) mod mo
  echo ans
main()
0