結果

問題 No.1319 最強とんがりコーン
ユーザー kotatsugamekotatsugame
提出日時 2020-12-17 02:13:06
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 347 bytes
コンパイル時間 532 ms
コンパイル使用メモリ 73,552 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-09-20 06:02:53
合計ジャッジ時間 37,419 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 843 ms
6,812 KB
testcase_01 AC 864 ms
6,940 KB
testcase_02 AC 480 ms
6,940 KB
testcase_03 AC 238 ms
6,940 KB
testcase_04 AC 967 ms
6,940 KB
testcase_05 AC 860 ms
6,940 KB
testcase_06 AC 540 ms
6,940 KB
testcase_07 AC 295 ms
6,940 KB
testcase_08 AC 559 ms
6,940 KB
testcase_09 AC 949 ms
6,940 KB
testcase_10 AC 58 ms
6,944 KB
testcase_11 AC 336 ms
6,940 KB
testcase_12 AC 598 ms
6,940 KB
testcase_13 AC 370 ms
6,940 KB
testcase_14 AC 113 ms
6,944 KB
testcase_15 AC 402 ms
6,940 KB
testcase_16 AC 143 ms
6,940 KB
testcase_17 AC 1,124 ms
6,940 KB
testcase_18 AC 183 ms
6,940 KB
testcase_19 AC 1,124 ms
6,940 KB
testcase_20 AC 821 ms
6,940 KB
testcase_21 AC 873 ms
6,940 KB
testcase_22 AC 829 ms
6,940 KB
testcase_23 AC 850 ms
6,944 KB
testcase_24 AC 824 ms
6,940 KB
testcase_25 AC 862 ms
6,948 KB
testcase_26 AC 838 ms
6,944 KB
testcase_27 AC 838 ms
6,944 KB
testcase_28 AC 833 ms
6,940 KB
testcase_29 AC 827 ms
6,940 KB
testcase_30 AC 861 ms
6,940 KB
testcase_31 AC 844 ms
6,940 KB
testcase_32 AC 518 ms
6,940 KB
testcase_33 AC 1,113 ms
6,940 KB
testcase_34 AC 838 ms
6,940 KB
testcase_35 AC 877 ms
6,944 KB
testcase_36 AC 856 ms
6,940 KB
testcase_37 AC 851 ms
6,940 KB
testcase_38 AC 834 ms
6,940 KB
testcase_39 AC 974 ms
6,944 KB
testcase_40 AC 354 ms
6,944 KB
testcase_41 WA -
testcase_42 AC 102 ms
6,944 KB
testcase_43 AC 58 ms
6,944 KB
testcase_44 AC 111 ms
6,944 KB
testcase_45 WA -
testcase_46 AC 785 ms
6,944 KB
testcase_47 AC 75 ms
6,944 KB
testcase_48 AC 352 ms
6,944 KB
testcase_49 AC 83 ms
6,940 KB
testcase_50 AC 68 ms
6,944 KB
testcase_51 WA -
testcase_52 AC 62 ms
6,944 KB
testcase_53 WA -
testcase_54 AC 138 ms
6,944 KB
testcase_55 AC 106 ms
6,940 KB
testcase_56 WA -
testcase_57 WA -
testcase_58 WA -
testcase_59 WA -
testcase_60 AC 2 ms
6,940 KB
testcase_61 AC 2 ms
6,940 KB
testcase_62 AC 2 ms
6,944 KB
testcase_63 AC 1 ms
6,940 KB
testcase_64 AC 540 ms
6,940 KB
testcase_65 AC 554 ms
6,944 KB
testcase_66 AC 2 ms
6,944 KB
testcase_67 AC 841 ms
6,940 KB
testcase_68 AC 1,064 ms
6,944 KB
testcase_69 AC 826 ms
6,940 KB
testcase_70 AC 85 ms
6,944 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp:7:1: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type]
    7 | main()
      | ^~~~

ソースコード

diff #

#include<iostream>
#include<iomanip>
#include<cmath>
using namespace std;
const int dx=1<<25;
double R,H,D;
main()
{
	cin>>R>>H>>D;
	double ans=0;
	for(int cnt=0;cnt<dx;cnt++)
	{
		double r=(1-(double)cnt/dx)*R;
		if(r+r<=D)break;
		double theta=2*acos(D/2/r);
		ans+=r*r*theta-r*r*sin(theta);
	}
	cout<<fixed<<setprecision(16)<<ans*H/dx<<endl;
}
0