結果

問題 No.797 Noelちゃんとピラミッド
ユーザー urutomurutom
提出日時 2019-04-04 01:24:38
言語 Ruby
(3.3.0)
結果
AC  
実行時間 322 ms / 2,000 ms
コード長 392 bytes
コンパイル時間 238 ms
コンパイル使用メモリ 7,296 KB
実行使用メモリ 22,272 KB
最終ジャッジ日時 2024-06-06 05:31:05
合計ジャッジ時間 13,960 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 82 ms
12,160 KB
testcase_01 AC 85 ms
12,032 KB
testcase_02 AC 79 ms
12,032 KB
testcase_03 AC 310 ms
22,272 KB
testcase_04 AC 310 ms
22,144 KB
testcase_05 AC 318 ms
22,144 KB
testcase_06 AC 303 ms
22,016 KB
testcase_07 AC 299 ms
22,144 KB
testcase_08 AC 319 ms
22,144 KB
testcase_09 AC 310 ms
22,144 KB
testcase_10 AC 310 ms
22,272 KB
testcase_11 AC 314 ms
22,016 KB
testcase_12 AC 309 ms
22,144 KB
testcase_13 AC 304 ms
22,272 KB
testcase_14 AC 317 ms
22,144 KB
testcase_15 AC 310 ms
22,144 KB
testcase_16 AC 316 ms
22,272 KB
testcase_17 AC 317 ms
22,144 KB
testcase_18 AC 304 ms
22,144 KB
testcase_19 AC 308 ms
22,144 KB
testcase_20 AC 312 ms
22,144 KB
testcase_21 AC 309 ms
22,144 KB
testcase_22 AC 303 ms
22,272 KB
testcase_23 AC 242 ms
18,304 KB
testcase_24 AC 138 ms
14,336 KB
testcase_25 AC 216 ms
18,048 KB
testcase_26 AC 207 ms
17,536 KB
testcase_27 AC 300 ms
21,760 KB
testcase_28 AC 282 ms
20,608 KB
testcase_29 AC 110 ms
13,184 KB
testcase_30 AC 128 ms
13,568 KB
testcase_31 AC 235 ms
18,176 KB
testcase_32 AC 149 ms
14,848 KB
testcase_33 AC 215 ms
17,920 KB
testcase_34 AC 173 ms
15,488 KB
testcase_35 AC 322 ms
22,272 KB
testcase_36 AC 102 ms
12,928 KB
testcase_37 AC 289 ms
20,608 KB
testcase_38 AC 295 ms
21,120 KB
testcase_39 AC 214 ms
17,536 KB
testcase_40 AC 106 ms
13,056 KB
testcase_41 AC 117 ms
13,568 KB
testcase_42 AC 211 ms
17,408 KB
testcase_43 AC 86 ms
12,160 KB
testcase_44 AC 83 ms
12,032 KB
testcase_45 AC 83 ms
12,032 KB
testcase_46 AC 81 ms
12,160 KB
testcase_47 AC 82 ms
11,904 KB
testcase_48 AC 81 ms
12,160 KB
testcase_49 AC 81 ms
12,160 KB
testcase_50 AC 83 ms
12,032 KB
testcase_51 AC 84 ms
12,160 KB
testcase_52 AC 78 ms
12,160 KB
testcase_53 AC 82 ms
12,032 KB
testcase_54 AC 80 ms
12,288 KB
testcase_55 AC 79 ms
12,288 KB
testcase_56 AC 78 ms
12,160 KB
testcase_57 AC 78 ms
12,032 KB
testcase_58 AC 78 ms
12,288 KB
testcase_59 AC 82 ms
12,160 KB
testcase_60 AC 78 ms
12,160 KB
testcase_61 AC 84 ms
12,032 KB
testcase_62 AC 83 ms
12,032 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.rb:12: warning: assigned but unused variable - d
Main.rb:12: warning: assigned but unused variable - y
Syntax OK

ソースコード

diff #

M=10**9+7
def extended_euclid_algorithm(a,b)
  d0,x0,y0,d1,x1,y1=a,1,0,b,0,1
  until d1==0
    q=d0/d1
    d0,x0,y0,d1,x1,y1=d1,x1,y1,d0-q*d1,x0-q*x1,y0-q*y1
  end
  [d0,x0,y0]
end

def inverse(a)
  d,x,y=extended_euclid_algorithm(a,M)
  x%M
end

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

puts ans%M
0