結果
問題 | No.605 板挟みの球面 |
ユーザー | zimpha |
提出日時 | 2017-12-05 01:59:00 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 143 bytes |
コンパイル時間 | 720 ms |
コンパイル使用メモリ | 80,060 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-05-06 04:10:01 |
合計ジャッジ時間 | 1,116 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 1 ms
5,376 KB |
testcase_02 | AC | 1 ms
5,376 KB |
testcase_03 | WA | - |
ソースコード
#include <cmath> #include <iostream> int main() { double a, b; std::cin >> a >> b; std::cout << 2 * acos(-1.0) * (b - a) << std::endl; }