結果
| 問題 |
No.1381 Simple Geometry 1
|
| コンテスト | |
| ユーザー |
pengin_2000
|
| 提出日時 | 2022-10-13 23:42:00 |
| 言語 | C (gcc 13.3.0) |
| 結果 |
AC
|
| 実行時間 | 1 ms / 2,000 ms |
| コード長 | 146 bytes |
| コンパイル時間 | 807 ms |
| コンパイル使用メモリ | 27,648 KB |
| 実行使用メモリ | 6,944 KB |
| 最終ジャッジ日時 | 2024-06-26 12:13:29 |
| 合計ジャッジ時間 | 1,534 ms |
|
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 29 |
ソースコード
#include<stdio.h>
int main()
{
double x, y, z, w;
scanf("%lf %lf %lf %lf", &x, &y, &z, &w);
printf("%.20lf\n", (x - y * z) / 2.0);
return 0;
}
pengin_2000