結果

問題 No.797 Noelちゃんとピラミッド
ユーザー urutomurutom
提出日時 2019-04-04 01:24:38
言語 Ruby
(3.4.1)
結果
AC  
実行時間 362 ms / 2,000 ms
コード長 392 bytes
コンパイル時間 157 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 22,400 KB
最終ジャッジ日時 2024-12-23 17:17:58
合計ジャッジ時間 16,130 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 99 ms
12,288 KB
testcase_01 AC 95 ms
12,160 KB
testcase_02 AC 95 ms
12,160 KB
testcase_03 AC 348 ms
22,272 KB
testcase_04 AC 347 ms
22,272 KB
testcase_05 AC 348 ms
22,144 KB
testcase_06 AC 362 ms
22,016 KB
testcase_07 AC 360 ms
22,016 KB
testcase_08 AC 347 ms
22,400 KB
testcase_09 AC 354 ms
22,144 KB
testcase_10 AC 347 ms
22,272 KB
testcase_11 AC 356 ms
22,144 KB
testcase_12 AC 344 ms
22,144 KB
testcase_13 AC 344 ms
22,016 KB
testcase_14 AC 349 ms
22,272 KB
testcase_15 AC 350 ms
22,272 KB
testcase_16 AC 353 ms
22,272 KB
testcase_17 AC 350 ms
22,272 KB
testcase_18 AC 346 ms
22,272 KB
testcase_19 AC 347 ms
22,144 KB
testcase_20 AC 347 ms
22,400 KB
testcase_21 AC 346 ms
22,144 KB
testcase_22 AC 347 ms
22,272 KB
testcase_23 AC 269 ms
18,176 KB
testcase_24 AC 155 ms
14,208 KB
testcase_25 AC 244 ms
17,920 KB
testcase_26 AC 233 ms
17,792 KB
testcase_27 AC 340 ms
22,016 KB
testcase_28 AC 314 ms
20,736 KB
testcase_29 AC 122 ms
13,184 KB
testcase_30 AC 147 ms
13,440 KB
testcase_31 AC 267 ms
18,176 KB
testcase_32 AC 167 ms
14,848 KB
testcase_33 AC 239 ms
17,664 KB
testcase_34 AC 196 ms
15,488 KB
testcase_35 AC 345 ms
22,272 KB
testcase_36 AC 121 ms
13,056 KB
testcase_37 AC 318 ms
20,736 KB
testcase_38 AC 326 ms
21,120 KB
testcase_39 AC 235 ms
17,664 KB
testcase_40 AC 120 ms
13,312 KB
testcase_41 AC 132 ms
13,440 KB
testcase_42 AC 232 ms
17,536 KB
testcase_43 AC 93 ms
12,160 KB
testcase_44 AC 93 ms
12,032 KB
testcase_45 AC 92 ms
12,160 KB
testcase_46 AC 92 ms
12,288 KB
testcase_47 AC 92 ms
12,288 KB
testcase_48 AC 93 ms
12,160 KB
testcase_49 AC 93 ms
12,288 KB
testcase_50 AC 92 ms
12,288 KB
testcase_51 AC 94 ms
12,160 KB
testcase_52 AC 92 ms
12,160 KB
testcase_53 AC 93 ms
12,160 KB
testcase_54 AC 93 ms
12,288 KB
testcase_55 AC 91 ms
12,288 KB
testcase_56 AC 94 ms
12,160 KB
testcase_57 AC 98 ms
12,160 KB
testcase_58 AC 94 ms
12,416 KB
testcase_59 AC 91 ms
12,160 KB
testcase_60 AC 94 ms
12,160 KB
testcase_61 AC 93 ms
12,288 KB
testcase_62 AC 92 ms
12,416 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