結果

問題 No.605 板挟みの球面
ユーザー kotatsugamekotatsugame
提出日時 2019-10-12 05:23:39
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1 ms / 2,000 ms
コード長 148 bytes
コンパイル時間 185 ms
コンパイル使用メモリ 37,248 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-05-05 08:00:53
合計ジャッジ時間 745 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 1 ms
5,376 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp:5:1: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type]
    5 | main()
      | ^~~~

ソースコード

diff #

#include<cstdio>
#include<cmath>
using namespace std;
const int B=1e6;
main()
{
	double a,b;scanf("%lf%lf",&a,&b);
	printf("%lf\n",M_PI*2*(b-a));
}
0