結果

問題 No.1539 不可欠な部分
ユーザー tomeruntomerun
提出日時 2021-06-06 19:46:40
言語 Crystal
(1.11.2)
結果
AC  
実行時間 753 ms / 2,000 ms
コード長 282 bytes
コンパイル時間 16,452 ms
コンパイル使用メモリ 332,284 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-11-23 15:04:44
合計ジャッジ時間 43,335 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 489 ms
5,248 KB
testcase_02 AC 578 ms
5,248 KB
testcase_03 AC 249 ms
5,248 KB
testcase_04 AC 212 ms
5,248 KB
testcase_05 AC 164 ms
5,248 KB
testcase_06 AC 287 ms
5,248 KB
testcase_07 AC 74 ms
5,248 KB
testcase_08 AC 159 ms
5,248 KB
testcase_09 AC 480 ms
5,248 KB
testcase_10 AC 514 ms
5,248 KB
testcase_11 AC 577 ms
5,248 KB
testcase_12 AC 583 ms
5,248 KB
testcase_13 AC 588 ms
5,248 KB
testcase_14 AC 556 ms
5,248 KB
testcase_15 AC 594 ms
5,248 KB
testcase_16 AC 752 ms
5,248 KB
testcase_17 AC 753 ms
5,248 KB
testcase_18 AC 567 ms
5,248 KB
testcase_19 AC 574 ms
5,248 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