結果

問題 No.1551 誕生日の三角形
ユーザー se1ka2
提出日時 2021-06-18 21:22:52
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 165 bytes
コンパイル時間 562 ms
コンパイル使用メモリ 72,064 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-06-22 19:48:05
合計ジャッジ時間 998 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample WA * 2
other WA * 9
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <iomanip>
#include <cmath>
using namespace std;

int main()
{
    double l;
    cin >> l;
    cout << l * l * sqrt(3.0) / 36 << endl;
}
0