結果

問題 No.1539 不可欠な部分
ユーザー vkgainzvkgainz
提出日時 2021-06-12 06:46:44
言語 C++17(clang)
(17.0.6 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 515 bytes
コンパイル時間 2,120 ms
コンパイル使用メモリ 162,628 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-05-09 08:38:41
合計ジャッジ時間 43,198 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,820 KB
testcase_01 AC 1,216 ms
5,376 KB
testcase_02 AC 1,456 ms
5,376 KB
testcase_03 AC 603 ms
5,376 KB
testcase_04 AC 525 ms
5,376 KB
testcase_05 AC 395 ms
5,376 KB
testcase_06 AC 698 ms
5,376 KB
testcase_07 AC 173 ms
5,376 KB
testcase_08 AC 377 ms
5,376 KB
testcase_09 AC 1,190 ms
5,376 KB
testcase_10 AC 1,230 ms
5,376 KB
testcase_11 AC 1,383 ms
5,376 KB
testcase_12 AC 1,373 ms
5,376 KB
testcase_13 AC 1,409 ms
5,376 KB
testcase_14 AC 1,395 ms
6,944 KB
testcase_15 AC 1,391 ms
6,944 KB
testcase_16 TLE -
testcase_17 TLE -
testcase_18 AC 1,376 ms
6,948 KB
testcase_19 AC 1,391 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() {
    int T; cin >> T;
    double mx = 1/(exp(1) * M_PI * M_PI);
    cout << setprecision(24);
    while(T--) {
        int N; cin >> N;
        int blocks = 400;
        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