結果

問題 No.1271 初めての級数
ユーザー gmm_teagmm_tea
提出日時 2020-11-05 03:35:46
言語 Ruby
(3.3.0)
結果
AC  
実行時間 84 ms / 2,000 ms
コード長 98 bytes
コンパイル時間 50 ms
コンパイル使用メモリ 11,436 KB
実行使用メモリ 15,352 KB
最終ジャッジ日時 2023-09-29 16:25:28
合計ジャッジ時間 1,995 ms
ジャッジサーバーID
(参考情報)
judge13 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 77 ms
15,352 KB
testcase_01 AC 76 ms
15,232 KB
testcase_02 AC 77 ms
15,148 KB
testcase_03 AC 77 ms
15,188 KB
testcase_04 AC 79 ms
15,128 KB
testcase_05 AC 84 ms
15,312 KB
testcase_06 AC 76 ms
15,052 KB
testcase_07 AC 76 ms
15,140 KB
testcase_08 AC 77 ms
15,184 KB
testcase_09 AC 75 ms
15,332 KB
testcase_10 AC 75 ms
15,160 KB
testcase_11 AC 76 ms
15,056 KB
testcase_12 AC 78 ms
15,292 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

k=gets.to_i
if k==0
  puts 1.644934
  exit
end
a=0.0
k.times do |i|
    a+=1.0/(i+1)
end
puts a/k
0