結果

問題 No.1319 最強とんがりコーン
コンテスト
ユーザー 👑 tails
提出日時 2020-12-16 10:12:52
言語 C(gnu17)
(gcc 15.2.0)
コンパイル:
gcc-15 -O2 -std=gnu17 -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=incompatible-pointer-types -Wno-error=int-conversion -DONLINE_JUDGE -o a.out _filename_ -lm
実行:
./a.out
結果
CE  
(最新)
AC  
(最初)
実行時間 -
コード長 221 bytes
記録
記録タグの例:
初AC ショートコード 純ショートコード 純主流ショートコード 最速実行時間
コンパイル時間 72 ms
コンパイル使用メモリ 25,304 KB
最終ジャッジ日時 2026-02-22 06:32:53
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)
コンパイルエラー時のメッセージ・ソースコードは、提出者また管理者しか表示できないようにしております。(リジャッジ後のコンパイルエラーは公開されます)
ただし、clay言語の場合は開発者のデバッグのため、公開されます。

コンパイルメッセージ
main.c:3:1: error: return type defaults to 'int' [-Wimplicit-int]
    3 | main(){
      | ^~~~
main.c: In function 'main':
main.c:5:9: error: implicit declaration of function 'scanf' [-Wimplicit-function-declaration]
    5 |         scanf("%lf%lf%lf",&r,&h,&d);
      |         ^~~~~
main.c:1:1: note: include '<stdio.h>' or provide a declaration of 'scanf'
  +++ |+#include <stdio.h>
    1 | // https://keisan.casio.jp/exec/system/14748552221122
main.c:5:9: warning: incompatible implicit declaration of built-in function 'scanf' [-Wbuiltin-declaration-mismatch]
    5 |         scanf("%lf%lf%lf",&r,&h,&d);
      |         ^~~~~
main.c:5:9: note: include '<stdio.h>' or provide a declaration of 'scanf'
main.c:7:47: error: implicit declaration of function 'sqrt' [-Wimplicit-function-declaration]
    7 |         v=h*r*r/3*(3.141592653589793238/2-2*k*sqrt(1-k*k)-asin(k)+k*k*k*acosh(1/k));
      |                                               ^~~~
main.c:1:1: note: include '<math.h>' or provide a declaration of 'sqrt'
  +++ |+#include <math.h>
    1 | // https://keisan.casio.jp/exec/system/14748552221122
main.c:7:47: warning: incompatible implicit declaration of built-in function 'sqrt' [-Wbuiltin-declaration-mismatch]
    7 |         v=h*r*r/3*(3.141592653589793238/2-2*k*sqrt(1-k*k)-asin(k)+k*k*k*acosh(1/k));
      |                                               ^~~~
main.c:7:47: note: include '<math.h>' or provide a declaration of 'sqrt'
main.c:7:59: error: implicit declaration of function 'asin' [-Wimplicit-function-declaration]
    7 |         v=h*r*r/3*(3.141592653589793238/2-2*k*sqrt(1-k*k)-asin(k)+k*k*k*acosh(1/k));
      |                                                           ^~~~
main.c:7:59: note: include '<math.h>' or provide a declaration of 'asin'
main.c:7:59: warning: incompatible implicit declaration of built-in function 'asin' [-Wbuiltin-declaration-mismatch]
main.c:7:59: note: include '<math.h>' or provide a declaration of 'asin'
main.c:7:73: error: implic

ソースコード

diff #
raw source code

// https://keisan.casio.jp/exec/system/14748552221122

main(){
	double r,h,d,k,v;
	scanf("%lf%lf%lf",&r,&h,&d);
	k=d/r/2;
	v=h*r*r/3*(3.141592653589793238/2-2*k*sqrt(1-k*k)-asin(k)+k*k*k*acosh(1/k));
	printf("%f",v*2);
}
0