結果

問題 No.735 接線
ユーザー butsurizukibutsurizuki
提出日時 2018-06-08 17:04:11
言語 C
(gcc 13.3.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 154 bytes
コンパイル時間 109 ms
コンパイル使用メモリ 29,184 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-06-30 10:40:24
合計ジャッジ時間 1,289 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 30
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<stdio.h>
#include<math.h>

int main(){
    double r,d;
    scanf("%lf%lf",&r,&d);
    printf("%.12lf\n",sqrt(pow(d,2)-pow(r,2)));
    return 0;
}
0