結果

問題 No.1271 初めての級数
ユーザー KisaragiEffectiveKisaragiEffective
提出日時 2021-05-17 01:06:15
言語 Ruby
(3.3.0)
結果
AC  
実行時間 1,413 ms / 2,000 ms
コード長 131 bytes
コンパイル時間 157 ms
コンパイル使用メモリ 7,296 KB
実行使用メモリ 45,800 KB
最終ジャッジ日時 2024-10-05 13:36:35
合計ジャッジ時間 9,331 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,413 ms
45,800 KB
testcase_01 AC 163 ms
20,864 KB
testcase_02 AC 177 ms
20,992 KB
testcase_03 AC 766 ms
24,576 KB
testcase_04 AC 761 ms
24,448 KB
testcase_05 AC 234 ms
20,608 KB
testcase_06 AC 306 ms
20,736 KB
testcase_07 AC 603 ms
22,656 KB
testcase_08 AC 709 ms
23,936 KB
testcase_09 AC 667 ms
23,808 KB
testcase_10 AC 382 ms
20,736 KB
testcase_11 AC 631 ms
23,424 KB
testcase_12 AC 408 ms
20,608 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

k = gets.to_i
r = k == 0 ? 20000 : 100000;
puts (1..r).map { Rational(1, _1 * (_1 + k)) }.inject(:+).to_f + (10 ** -Math::log10(r))
0