結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 443 ms
5,376 KB
testcase_02 AC 519 ms
5,376 KB
testcase_03 AC 233 ms
5,376 KB
testcase_04 AC 190 ms
5,376 KB
testcase_05 AC 151 ms
5,376 KB
testcase_06 AC 251 ms
5,376 KB
testcase_07 AC 65 ms
5,376 KB
testcase_08 AC 146 ms
5,376 KB
testcase_09 AC 445 ms
5,376 KB
testcase_10 AC 477 ms
5,376 KB
testcase_11 AC 517 ms
5,376 KB
testcase_12 AC 514 ms
5,376 KB
testcase_13 AC 528 ms
5,376 KB
testcase_14 AC 516 ms
5,376 KB
testcase_15 AC 516 ms
5,376 KB
testcase_16 AC 694 ms
5,376 KB
testcase_17 AC 758 ms
5,376 KB
testcase_18 AC 504 ms
5,376 KB
testcase_19 AC 515 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

t = read_line.to_i
b = 100
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