結果
問題 | No.754 畳み込みの和 |
ユーザー | horiesiniti |
提出日時 | 2018-03-19 15:08:07 |
言語 | Ruby (3.3.0) |
結果 |
AC
|
実行時間 | 247 ms / 5,000 ms |
コード長 | 194 bytes |
コンパイル時間 | 41 ms |
コンパイル使用メモリ | 7,424 KB |
実行使用メモリ | 14,720 KB |
最終ジャッジ日時 | 2024-06-10 02:53:07 |
合計ジャッジ時間 | 1,939 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 241 ms
14,720 KB |
testcase_01 | AC | 247 ms
14,720 KB |
testcase_02 | AC | 241 ms
14,720 KB |
コンパイルメッセージ
Syntax OK
ソースコード
n=gets.to_i+1 as=[] bs=[] n.times{ as<<gets.to_i } as=as.reverse n.times{ bs<<gets.to_i } sum=as.inject{|sum,e| sum+e } ans=0 bs.each{|e| ans=(ans+sum*e)%(10**9+7) sum-=as.shift } puts ans