結果

問題 No.1551 誕生日の三角形
ユーザー Lepton_s
提出日時 2018-01-28 17:59:59
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 1 ms / 1,000 ms
コード長 179 bytes
コンパイル時間 376 ms
コンパイル使用メモリ 48,128 KB
最終ジャッジ日時 2025-01-05 08:02:06
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 9
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:8:14: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
    8 |         scanf("%d", &L);
      |         ~~~~~^~~~~~~~~~

ソースコード

diff #

// Another Solution
#include <cstdio>
#include <cmath>
using namespace std;

int main(){
	int L;
	scanf("%d", &L);
	printf("%.20Lf\n", 0.0481125224324688137111L*L*L);
	return 0;
}
0