結果

問題 No.1539 不可欠な部分
ユーザー maguroflymagurofly
提出日時 2021-06-06 20:06:24
言語 Crystal
(1.11.2)
結果
AC  
実行時間 301 ms / 2,000 ms
コード長 268 bytes
コンパイル時間 14,661 ms
コンパイル使用メモリ 295,708 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-11-23 15:35:07
合計ジャッジ時間 37,092 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 258 ms
5,248 KB
testcase_02 AC 300 ms
5,248 KB
testcase_03 AC 134 ms
5,248 KB
testcase_04 AC 113 ms
5,248 KB
testcase_05 AC 88 ms
5,248 KB
testcase_06 AC 154 ms
5,248 KB
testcase_07 AC 40 ms
5,248 KB
testcase_08 AC 83 ms
5,248 KB
testcase_09 AC 251 ms
5,248 KB
testcase_10 AC 265 ms
5,248 KB
testcase_11 AC 289 ms
5,248 KB
testcase_12 AC 295 ms
5,248 KB
testcase_13 AC 301 ms
5,248 KB
testcase_14 AC 288 ms
5,248 KB
testcase_15 AC 291 ms
5,248 KB
testcase_16 AC 282 ms
5,248 KB
testcase_17 AC 287 ms
5,248 KB
testcase_18 AC 289 ms
5,248 KB
testcase_19 AC 291 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

E = Math::E.to_f64

def f(x, n)
  E * x - E * (x**3 / n**2) / 6 + E * (x**5 / n**4) / 30 + 31 * E * (x**7 / n**6) / 5040 + 379 * E * (x**9 / n**8) / 362880
end

T = gets.to_s.to_i
a = 1 / (E * Math::PI**2)
T.times do
  n = gets.to_s.to_f64
  puts f(a, n) - f(0, n)
end
0