結果
| 問題 |
No.1551 誕生日の三角形
|
| コンテスト | |
| ユーザー |
Lepton_s
|
| 提出日時 | 2018-01-28 17:51:05 |
| 言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
AC
|
| 実行時間 | 1 ms / 1,000 ms |
| コード長 | 151 bytes |
| コンパイル時間 | 334 ms |
| コンパイル使用メモリ | 48,128 KB |
| 最終ジャッジ日時 | 2025-01-05 08:02:03 |
|
ジャッジサーバーID (参考情報) |
judge3 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 9 |
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:7:14: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
7 | scanf("%d", &L);
| ~~~~~^~~~~~~~~~
ソースコード
#include <cstdio>
#include <cmath>
using namespace std;
int main(){
int L;
scanf("%d", &L);
printf("%.20Lf\n", sqrtl(3.0L)/36.0L*L*L);
return 0;
}
Lepton_s