結果

問題 No.797 Noelちゃんとピラミッド
ユーザー urutomurutom
提出日時 2019-04-04 01:23:01
言語 Ruby
(3.4.1)
結果
TLE  
実行時間 -
コード長 388 bytes
コンパイル時間 237 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 130,284 KB
最終ジャッジ日時 2024-12-23 17:15:47
合計ジャッジ時間 121,663 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 91 ms
17,408 KB
testcase_01 AC 89 ms
115,324 KB
testcase_02 AC 94 ms
17,536 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 TLE -
testcase_25 TLE -
testcase_26 TLE -
testcase_27 TLE -
testcase_28 TLE -
testcase_29 TLE -
testcase_30 TLE -
testcase_31 TLE -
testcase_32 TLE -
testcase_33 TLE -
testcase_34 TLE -
testcase_35 TLE -
testcase_36 AC 1,577 ms
95,360 KB
testcase_37 TLE -
testcase_38 TLE -
testcase_39 TLE -
testcase_40 AC 1,552 ms
95,616 KB
testcase_41 TLE -
testcase_42 TLE -
testcase_43 AC 93 ms
12,160 KB
testcase_44 AC 87 ms
12,288 KB
testcase_45 AC 91 ms
12,032 KB
testcase_46 AC 88 ms
12,160 KB
testcase_47 AC 84 ms
11,904 KB
testcase_48 AC 90 ms
12,160 KB
testcase_49 AC 88 ms
12,032 KB
testcase_50 AC 87 ms
12,160 KB
testcase_51 AC 86 ms
12,032 KB
testcase_52 AC 88 ms
12,160 KB
testcase_53 AC 90 ms
12,160 KB
testcase_54 AC 87 ms
12,288 KB
testcase_55 AC 87 ms
12,160 KB
testcase_56 AC 88 ms
12,160 KB
testcase_57 AC 90 ms
12,032 KB
testcase_58 AC 100 ms
12,032 KB
testcase_59 AC 97 ms
12,160 KB
testcase_60 AC 97 ms
11,904 KB
testcase_61 AC 90 ms
12,032 KB
testcase_62 AC 94 ms
130,284 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)
}

puts ans%M
0