結果

問題 No.1539 不可欠な部分
ユーザー vkgainzvkgainz
提出日時 2021-06-12 06:47:59
言語 C++17(clang)
(17.0.6 + boost 1.83.0)
結果
AC  
実行時間 1,035 ms / 2,000 ms
コード長 576 bytes
コンパイル時間 1,691 ms
コンパイル使用メモリ 162,384 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-05-09 08:42:52
合計ジャッジ時間 33,791 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,812 KB
testcase_01 AC 535 ms
6,940 KB
testcase_02 AC 643 ms
6,940 KB
testcase_03 AC 274 ms
6,940 KB
testcase_04 AC 234 ms
6,940 KB
testcase_05 AC 191 ms
6,940 KB
testcase_06 AC 320 ms
6,940 KB
testcase_07 AC 85 ms
6,940 KB
testcase_08 AC 173 ms
6,940 KB
testcase_09 AC 533 ms
6,940 KB
testcase_10 AC 575 ms
6,940 KB
testcase_11 AC 669 ms
6,944 KB
testcase_12 AC 646 ms
6,940 KB
testcase_13 AC 649 ms
6,940 KB
testcase_14 AC 651 ms
6,940 KB
testcase_15 AC 639 ms
6,944 KB
testcase_16 AC 1,035 ms
6,940 KB
testcase_17 AC 1,002 ms
6,940 KB
testcase_18 AC 621 ms
6,940 KB
testcase_19 AC 624 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

double eval(double x, int N) {
    return exp(cos(x / N));
}

int main() {
    ios_base::sync_with_stdio(false);
    cin.tie(nullptr);

    int T; cin >> T;
    double mx = 1/(exp(1) * M_PI * M_PI);
    cout << setprecision(24);
    while(T--) {
        int N; cin >> N;
        int blocks = 200;
        double dx = mx / blocks;
        double ans = 0.0;
        for(double x = 0; x < mx; x += dx) {
            double mid = (x + x + dx) / 2;
            ans += eval(mid, N) * dx;
        }
        cout << ans << "\n";
    }
}
0