結果

問題 No.1539 不可欠な部分
ユーザー maguroflymagurofly
提出日時 2021-06-06 20:06:24
言語 Crystal
(1.11.2)
結果
AC  
実行時間 314 ms / 2,000 ms
コード長 268 bytes
コンパイル時間 13,011 ms
コンパイル使用メモリ 297,624 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-05-02 21:03:16
合計ジャッジ時間 37,343 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 270 ms
5,376 KB
testcase_02 AC 313 ms
5,376 KB
testcase_03 AC 142 ms
5,376 KB
testcase_04 AC 113 ms
5,376 KB
testcase_05 AC 91 ms
5,376 KB
testcase_06 AC 159 ms
5,376 KB
testcase_07 AC 40 ms
5,376 KB
testcase_08 AC 86 ms
5,376 KB
testcase_09 AC 264 ms
5,376 KB
testcase_10 AC 273 ms
5,376 KB
testcase_11 AC 312 ms
5,376 KB
testcase_12 AC 306 ms
5,376 KB
testcase_13 AC 313 ms
5,376 KB
testcase_14 AC 314 ms
5,376 KB
testcase_15 AC 306 ms
5,376 KB
testcase_16 AC 307 ms
5,376 KB
testcase_17 AC 303 ms
5,376 KB
testcase_18 AC 308 ms
5,376 KB
testcase_19 AC 312 ms
5,376 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