結果

問題 No.1319 最強とんがりコーン
ユーザー akakimidoriakakimidori
提出日時 2020-12-17 01:37:32
言語 C
(gcc 12.3.0)
結果
TLE  
実行時間 -
コード長 739 bytes
コンパイル時間 871 ms
コンパイル使用メモリ 30,720 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-09-20 05:52:20
合計ジャッジ時間 76,616 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,640 ms
6,816 KB
testcase_01 AC 1,738 ms
6,940 KB
testcase_02 AC 1,020 ms
6,940 KB
testcase_03 AC 568 ms
6,940 KB
testcase_04 AC 1,945 ms
6,944 KB
testcase_05 AC 1,679 ms
6,940 KB
testcase_06 AC 1,092 ms
6,940 KB
testcase_07 AC 662 ms
6,940 KB
testcase_08 AC 1,150 ms
6,944 KB
testcase_09 AC 1,919 ms
6,940 KB
testcase_10 AC 228 ms
6,940 KB
testcase_11 AC 753 ms
6,944 KB
testcase_12 AC 1,244 ms
6,944 KB
testcase_13 AC 807 ms
6,940 KB
testcase_14 AC 337 ms
6,944 KB
testcase_15 AC 855 ms
6,944 KB
testcase_16 AC 381 ms
6,940 KB
testcase_17 TLE -
testcase_18 AC 447 ms
6,940 KB
testcase_19 TLE -
testcase_20 AC 1,654 ms
6,940 KB
testcase_21 AC 1,714 ms
6,944 KB
testcase_22 AC 1,635 ms
6,944 KB
testcase_23 AC 1,650 ms
6,940 KB
testcase_24 AC 1,625 ms
6,944 KB
testcase_25 AC 1,688 ms
6,940 KB
testcase_26 AC 1,652 ms
6,940 KB
testcase_27 AC 1,637 ms
6,940 KB
testcase_28 AC 1,695 ms
6,940 KB
testcase_29 AC 1,623 ms
6,944 KB
testcase_30 AC 1,649 ms
6,944 KB
testcase_31 AC 1,654 ms
6,940 KB
testcase_32 AC 1,083 ms
6,944 KB
testcase_33 TLE -
testcase_34 AC 1,702 ms
6,944 KB
testcase_35 AC 1,694 ms
6,940 KB
testcase_36 AC 1,653 ms
6,940 KB
testcase_37 AC 1,704 ms
6,944 KB
testcase_38 AC 1,670 ms
6,944 KB
testcase_39 AC 1,912 ms
6,940 KB
testcase_40 AC 744 ms
6,944 KB
testcase_41 AC 213 ms
6,940 KB
testcase_42 AC 305 ms
6,944 KB
testcase_43 AC 229 ms
6,940 KB
testcase_44 AC 317 ms
6,940 KB
testcase_45 AC 180 ms
6,940 KB
testcase_46 AC 1,577 ms
6,940 KB
testcase_47 AC 254 ms
6,940 KB
testcase_48 AC 755 ms
6,944 KB
testcase_49 AC 271 ms
6,944 KB
testcase_50 AC 241 ms
6,944 KB
testcase_51 AC 195 ms
6,944 KB
testcase_52 AC 225 ms
6,944 KB
testcase_53 WA -
testcase_54 AC 375 ms
6,944 KB
testcase_55 AC 317 ms
6,940 KB
testcase_56 AC 223 ms
6,940 KB
testcase_57 WA -
testcase_58 WA -
testcase_59 WA -
testcase_60 AC 125 ms
6,944 KB
testcase_61 AC 125 ms
6,944 KB
testcase_62 AC 126 ms
6,944 KB
testcase_63 AC 125 ms
6,940 KB
testcase_64 AC 1,150 ms
6,940 KB
testcase_65 AC 1,118 ms
6,944 KB
testcase_66 AC 122 ms
6,944 KB
testcase_67 AC 1,615 ms
6,944 KB
testcase_68 TLE -
testcase_69 AC 1,616 ms
6,944 KB
testcase_70 AC 268 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<stdio.h>
#include<stdlib.h>
#include<stdint.h>
#include<inttypes.h>
#include<math.h>

typedef int32_t i32;
typedef int64_t i64;

double PARAM = 0.0;

double func (double r) {
    if (2 * r < PARAM) {
        return 0;
    }
    double p = acos (PARAM / (2 * r)) * 2;
    return r * r * (p - sin(p));
}

double calc (void) {
    const i32 n = 1 << 26;
    double f = (double) 1 / n;
    double sum = 0;
    for (i32 i = n - 1; i >= 0; --i) {
        double r = (n - i) * f;
        sum += func(r);
    }
    return sum * f;
}

void run (void) {
    double r, h, d;
    scanf ("%lf%lf%lf", &r, &h, &d);
    PARAM = d / r;
    double ans = r * r * h * calc();
    printf ("%7f", ans);
}

int main (void) {
    run();
    return 0;
}
0