結果

問題 No.1319 最強とんがりコーン
ユーザー akakimidoriakakimidori
提出日時 2020-12-17 01:42:09
言語 C
(gcc 12.3.0)
結果
AC  
実行時間 818 ms / 2,000 ms
コード長 849 bytes
コンパイル時間 400 ms
コンパイル使用メモリ 31,360 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-09-20 05:54:05
合計ジャッジ時間 28,672 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 602 ms
5,248 KB
testcase_01 AC 632 ms
5,376 KB
testcase_02 AC 370 ms
5,376 KB
testcase_03 AC 199 ms
5,376 KB
testcase_04 AC 729 ms
5,376 KB
testcase_05 AC 623 ms
5,376 KB
testcase_06 AC 400 ms
5,376 KB
testcase_07 AC 235 ms
5,376 KB
testcase_08 AC 427 ms
5,376 KB
testcase_09 AC 732 ms
5,376 KB
testcase_10 AC 69 ms
5,376 KB
testcase_11 AC 272 ms
5,376 KB
testcase_12 AC 458 ms
5,376 KB
testcase_13 AC 291 ms
5,376 KB
testcase_14 AC 111 ms
5,376 KB
testcase_15 AC 308 ms
5,376 KB
testcase_16 AC 128 ms
5,376 KB
testcase_17 AC 818 ms
5,376 KB
testcase_18 AC 159 ms
5,376 KB
testcase_19 AC 802 ms
5,376 KB
testcase_20 AC 599 ms
5,376 KB
testcase_21 AC 623 ms
5,376 KB
testcase_22 AC 594 ms
5,376 KB
testcase_23 AC 602 ms
5,376 KB
testcase_24 AC 603 ms
5,376 KB
testcase_25 AC 617 ms
5,376 KB
testcase_26 AC 598 ms
5,376 KB
testcase_27 AC 593 ms
5,376 KB
testcase_28 AC 588 ms
5,376 KB
testcase_29 AC 579 ms
5,376 KB
testcase_30 AC 609 ms
5,376 KB
testcase_31 AC 599 ms
5,376 KB
testcase_32 AC 388 ms
5,376 KB
testcase_33 AC 803 ms
5,376 KB
testcase_34 AC 590 ms
5,376 KB
testcase_35 AC 616 ms
5,376 KB
testcase_36 AC 604 ms
5,376 KB
testcase_37 AC 620 ms
5,376 KB
testcase_38 AC 604 ms
5,376 KB
testcase_39 AC 687 ms
5,376 KB
testcase_40 AC 272 ms
5,376 KB
testcase_41 AC 66 ms
5,376 KB
testcase_42 AC 101 ms
5,376 KB
testcase_43 AC 68 ms
5,376 KB
testcase_44 AC 101 ms
5,376 KB
testcase_45 AC 51 ms
5,376 KB
testcase_46 AC 579 ms
5,376 KB
testcase_47 AC 80 ms
5,376 KB
testcase_48 AC 268 ms
5,376 KB
testcase_49 AC 83 ms
5,376 KB
testcase_50 AC 74 ms
5,376 KB
testcase_51 AC 57 ms
5,376 KB
testcase_52 AC 71 ms
5,376 KB
testcase_53 AC 45 ms
5,376 KB
testcase_54 AC 128 ms
5,376 KB
testcase_55 AC 102 ms
5,376 KB
testcase_56 AC 66 ms
5,376 KB
testcase_57 AC 48 ms
5,376 KB
testcase_58 AC 46 ms
5,376 KB
testcase_59 AC 43 ms
5,376 KB
testcase_60 AC 30 ms
5,376 KB
testcase_61 AC 31 ms
5,376 KB
testcase_62 AC 30 ms
5,376 KB
testcase_63 AC 30 ms
5,376 KB
testcase_64 AC 414 ms
5,376 KB
testcase_65 AC 416 ms
5,376 KB
testcase_66 AC 29 ms
5,376 KB
testcase_67 AC 590 ms
5,376 KB
testcase_68 AC 768 ms
5,376 KB
testcase_69 AC 586 ms
5,376 KB
testcase_70 AC 86 ms
5,376 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 << 23;
    double f = (double) 1 / n;
    double sum = 0;
    double i6 = (double)1 / 6;
    for (i32 i = n - 1; i >= 0; --i) {
        double r = (n - i) * f;
        double l = (n - 1 - i) * f;
        sum += (func(l) + 4 * func((l + r) * 0.5) + func(r)) * i6;
    }
    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