結果
| 問題 | No.1381 Simple Geometry 1 |
| コンテスト | |
| ユーザー |
pengin_2000
|
| 提出日時 | 2022-10-13 23:42:00 |
| 言語 | C(gnu17) (gcc 15.2.0) |
| 結果 |
AC
|
| 実行時間 | 2 ms / 2,000 ms |
| コード長 | 146 bytes |
| 記録 | |
| コンパイル時間 | 164 ms |
| コンパイル使用メモリ | 36,672 KB |
| 最終ジャッジ日時 | 2026-02-22 09:39:22 |
|
ジャッジサーバーID (参考情報) |
judge1 / 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