結果

問題 No.605 板挟みの球面
ユーザー testestesttestestest
提出日時 2017-12-05 00:26:41
言語 C
(gcc 12.3.0)
結果
AC  
実行時間 1 ms / 2,000 ms
コード長 103 bytes
コンパイル時間 982 ms
コンパイル使用メモリ 26,240 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-05-06 03:59:00
合計ジャッジ時間 1,462 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 0 ms
5,376 KB
testcase_03 AC 1 ms
5,376 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.c:2:1: warning: return type defaults to 'int' [-Wimplicit-int]
    2 | main(){
      | ^~~~
main.c: In function 'main':
main.c:4:9: warning: implicit declaration of function 'scanf' [-Wimplicit-function-declaration]
    4 |         scanf("%lf%lf",&l,&r);
      |         ^~~~~
main.c:1:1: note: include '<stdio.h>' or provide a declaration of 'scanf'
  +++ |+#include <stdio.h>
    1 | double l,r;
main.c:4:9: warning: incompatible implicit declaration of built-in function 'scanf' [-Wbuiltin-declaration-mismatch]
    4 |         scanf("%lf%lf",&l,&r);
      |         ^~~~~
main.c:4:9: note: include '<stdio.h>' or provide a declaration of 'scanf'
main.c:5:9: warning: implicit declaration of function 'printf' [-Wimplicit-function-declaration]
    5 |         printf("%.15f",2*pi*(r-l));
      |         ^~~~~~
main.c:5:9: note: include '<stdio.h>' or provide a declaration of 'printf'
main.c:5:9: warning: incompatible implicit declaration of built-in function 'printf' [-Wbuiltin-declaration-mismatch]
main.c:5:9: note: include '<stdio.h>' or provide a declaration of 'printf'

ソースコード

diff #

double l,r;
main(){
	double pi=3.14159265358979;
	scanf("%lf%lf",&l,&r);
	printf("%.15f",2*pi*(r-l));
}
0