結果
| 問題 | No.1622 三角形の面積 |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2021-08-03 04:27:42 |
| 言語 | C++17 (gcc 15.2.0 + boost 1.89.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 389 bytes |
| 記録 | |
| コンパイル時間 | 2,486 ms |
| コンパイル使用メモリ | 210,932 KB |
| 最終ジャッジ日時 | 2025-01-23 13:50:51 |
|
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | WA * 1 |
| other | WA * 4 |
ソースコード
#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);
}