結果

問題 No.1539 不可欠な部分
ユーザー tomeruntomerun
提出日時 2021-06-06 19:45:33
言語 Crystal
(1.11.2)
結果
AC  
実行時間 1,115 ms / 2,000 ms
コード長 282 bytes
コンパイル時間 13,970 ms
コンパイル使用メモリ 333,080 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-05-02 20:39:46
合計ジャッジ時間 40,825 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 632 ms
5,376 KB
testcase_02 AC 740 ms
5,376 KB
testcase_03 AC 328 ms
5,376 KB
testcase_04 AC 279 ms
5,376 KB
testcase_05 AC 217 ms
5,376 KB
testcase_06 AC 378 ms
5,376 KB
testcase_07 AC 96 ms
5,376 KB
testcase_08 AC 210 ms
5,376 KB
testcase_09 AC 624 ms
5,376 KB
testcase_10 AC 664 ms
5,376 KB
testcase_11 AC 733 ms
5,376 KB
testcase_12 AC 820 ms
5,376 KB
testcase_13 AC 759 ms
5,376 KB
testcase_14 AC 739 ms
5,376 KB
testcase_15 AC 746 ms
5,376 KB
testcase_16 AC 1,079 ms
5,376 KB
testcase_17 AC 1,115 ms
5,376 KB
testcase_18 AC 718 ms
5,376 KB
testcase_19 AC 746 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

t = read_line.to_i
b = 200
len = 1.0 / Math::E / (Math::PI ** 2) / b
t.times do
  n = read_line.to_i
  sum = Math::E
  1.upto(b - 1) do |i|
    sum += Math.exp(Math.cos(len * i / n)) * 2.0
  end
  sum += Math.exp(Math.cos(len * b / n))
  sum *= len / 2
  printf("%.10f\n", sum)
end
0