結果
| 問題 |
No.1551 誕生日の三角形
|
| コンテスト | |
| ユーザー |
keisuke6
|
| 提出日時 | 2022-05-28 10:50:59 |
| 言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 209 bytes |
| コンパイル時間 | 1,854 ms |
| コンパイル使用メモリ | 165,272 KB |
| 実行使用メモリ | 6,944 KB |
| 最終ジャッジ日時 | 2024-09-20 20:47:53 |
| 合計ジャッジ時間 | 2,253 ms |
|
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | WA * 2 |
| other | WA * 9 |
ソースコード
#include <bits/stdc++.h>
using namespace std;
#define int long long
#define double long double
signed main(){
double N;
cin>>N;
cout<<fixed<<setprecision(15);
cout<<(N*0.5)*pow(3,0.5)*(N*0.5)<<endl;
}
keisuke6