結果

問題 No.347 微分と積分
ユーザー code-devocode-devo
提出日時 2016-02-26 22:59:58
言語 Ruby
(3.3.0)
結果
AC  
実行時間 86 ms / 5,000 ms
コード長 187 bytes
コンパイル時間 137 ms
コンパイル使用メモリ 11,252 KB
実行使用メモリ 15,712 KB
最終ジャッジ日時 2023-08-27 01:33:17
合計ジャッジ時間 3,534 ms
ジャッジサーバーID
(参考情報)
judge12 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 74 ms
15,404 KB
testcase_01 AC 73 ms
15,708 KB
testcase_02 AC 71 ms
15,488 KB
testcase_03 AC 74 ms
15,376 KB
testcase_04 AC 73 ms
15,280 KB
testcase_05 AC 83 ms
15,156 KB
testcase_06 AC 78 ms
15,712 KB
testcase_07 AC 78 ms
15,628 KB
testcase_08 AC 82 ms
15,656 KB
testcase_09 AC 77 ms
15,636 KB
testcase_10 AC 79 ms
15,560 KB
testcase_11 AC 83 ms
15,476 KB
testcase_12 AC 78 ms
15,340 KB
testcase_13 AC 78 ms
15,504 KB
testcase_14 AC 78 ms
15,640 KB
testcase_15 AC 79 ms
15,468 KB
testcase_16 AC 78 ms
15,572 KB
testcase_17 AC 78 ms
15,448 KB
testcase_18 AC 79 ms
15,564 KB
testcase_19 AC 86 ms
15,128 KB
testcase_20 AC 72 ms
15,564 KB
testcase_21 AC 73 ms
15,556 KB
testcase_22 AC 75 ms
15,552 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.rb:1: warning: assigned but unused variable - n
Syntax OK

ソースコード

diff #

n = gets.to_i
b = gets.to_i
as = gets.split.map(&:to_f)

puts as.map{|a| a * b ** (a - 1)}.inject(&:+)
puts as.map{|a| Rational(1 / (a + 1)) * b ** (a + 1) rescue Math.log(b)}.inject(&:+)
0