結果

問題 No.1622 三角形の面積
ユーザー KKT89KKT89
提出日時 2021-08-03 04:27:42
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 389 bytes
コンパイル時間 2,517 ms
コンパイル使用メモリ 208,408 KB
実行使用メモリ 4,352 KB
最終ジャッジ日時 2023-10-14 21:02:36
合計ジャッジ時間 3,453 ms
ジャッジサーバーID
(参考情報)
judge14 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#pragma GCC optimize("Ofast")
#include <bits/stdc++.h>
using namespace std;
typedef long long int ll;
typedef unsigned long long ull;

mt19937_64 rng(chrono::steady_clock::now().time_since_epoch().count());
ll myRand(ll B) {
    return (ull)rng() % B;
}

int main(){
    cin.tie(nullptr);
    ios::sync_with_stdio(false);
    double r; cin >> r;
    printf("%.10f\n",1.299038105676*r*r);
}
0