結果

問題 No.797 Noelちゃんとピラミッド
ユーザー urutomurutom
提出日時 2019-04-04 01:19:59
言語 Ruby
(3.4.1)
結果
TLE  
実行時間 -
コード長 137 bytes
コンパイル時間 144 ms
コンパイル使用メモリ 7,680 KB
実行使用メモリ 213,760 KB
最終ジャッジ日時 2024-12-23 17:11:57
合計ジャッジ時間 97,839 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 91 ms
17,536 KB
testcase_01 AC 98 ms
154,260 KB
testcase_02 AC 94 ms
17,664 KB
testcase_03 TLE -
testcase_04 TLE -
testcase_05 TLE -
testcase_06 TLE -
testcase_07 TLE -
testcase_08 TLE -
testcase_09 TLE -
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 TLE -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 TLE -
testcase_23 TLE -
testcase_24 AC 392 ms
176,648 KB
testcase_25 AC 1,919 ms
116,224 KB
testcase_26 AC 1,731 ms
213,760 KB
testcase_27 TLE -
testcase_28 TLE -
testcase_29 AC 208 ms
31,488 KB
testcase_30 AC 351 ms
133,304 KB
testcase_31 TLE -
testcase_32 AC 604 ms
63,744 KB
testcase_33 AC 1,825 ms
109,184 KB
testcase_34 AC 988 ms
55,936 KB
testcase_35 TLE -
testcase_36 AC 172 ms
23,296 KB
testcase_37 TLE -
testcase_38 TLE -
testcase_39 AC 1,777 ms
108,032 KB
testcase_40 AC 174 ms
22,144 KB
testcase_41 AC 261 ms
26,752 KB
testcase_42 AC 1,644 ms
94,592 KB
testcase_43 AC 93 ms
12,288 KB
testcase_44 AC 92 ms
12,160 KB
testcase_45 AC 94 ms
12,160 KB
testcase_46 AC 93 ms
12,160 KB
testcase_47 AC 92 ms
12,288 KB
testcase_48 AC 92 ms
12,288 KB
testcase_49 AC 91 ms
12,160 KB
testcase_50 AC 91 ms
12,160 KB
testcase_51 AC 93 ms
12,288 KB
testcase_52 AC 91 ms
12,160 KB
testcase_53 AC 92 ms
12,160 KB
testcase_54 AC 92 ms
12,160 KB
testcase_55 AC 92 ms
12,160 KB
testcase_56 AC 89 ms
12,160 KB
testcase_57 AC 90 ms
12,160 KB
testcase_58 AC 92 ms
12,416 KB
testcase_59 AC 91 ms
12,288 KB
testcase_60 AC 91 ms
12,160 KB
testcase_61 AC 93 ms
12,160 KB
testcase_62 AC 93 ms
120,512 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

M=10**9+7
n=gets.to_i-1
a=gets.split.map(&:to_i)
ans=0
comb=1
a.each_with_index{|v,i|
  ans+=comb*v
  comb=comb*(n-i)/(i+1)
}

puts ans%M
0