結果
問題 | No.1381 Simple Geometry 1 |
ユーザー | tsuishi |
提出日時 | 2021-02-08 13:05:22 |
言語 | C (gcc 12.3.0) |
結果 |
AC
|
実行時間 | 1 ms / 2,000 ms |
コード長 | 1,518 bytes |
コンパイル時間 | 114 ms |
コンパイル使用メモリ | 28,288 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-07-05 15:46:33 |
合計ジャッジ時間 | 1,043 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
5,248 KB |
testcase_01 | AC | 1 ms
5,376 KB |
testcase_02 | AC | 1 ms
5,376 KB |
testcase_03 | AC | 1 ms
5,376 KB |
testcase_04 | AC | 1 ms
5,376 KB |
testcase_05 | AC | 1 ms
5,376 KB |
testcase_06 | AC | 1 ms
5,376 KB |
testcase_07 | AC | 1 ms
5,376 KB |
testcase_08 | AC | 0 ms
5,376 KB |
testcase_09 | AC | 1 ms
5,376 KB |
testcase_10 | AC | 1 ms
5,376 KB |
testcase_11 | AC | 1 ms
5,376 KB |
testcase_12 | AC | 1 ms
5,376 KB |
testcase_13 | AC | 1 ms
5,376 KB |
testcase_14 | AC | 1 ms
5,376 KB |
testcase_15 | AC | 1 ms
5,376 KB |
testcase_16 | AC | 1 ms
5,376 KB |
testcase_17 | AC | 1 ms
5,376 KB |
testcase_18 | AC | 1 ms
5,376 KB |
testcase_19 | AC | 1 ms
5,376 KB |
testcase_20 | AC | 1 ms
5,376 KB |
testcase_21 | AC | 1 ms
5,376 KB |
testcase_22 | AC | 1 ms
5,376 KB |
testcase_23 | AC | 1 ms
5,376 KB |
testcase_24 | AC | 1 ms
5,376 KB |
testcase_25 | AC | 1 ms
5,376 KB |
testcase_26 | AC | 1 ms
5,376 KB |
testcase_27 | AC | 1 ms
5,376 KB |
testcase_28 | AC | 1 ms
5,376 KB |
testcase_29 | AC | 1 ms
5,376 KB |
testcase_30 | AC | 1 ms
5,376 KB |
ソースコード
#include <stdio.h> #include <stdlib.h> #include <string.h> // Yukicoder №1381 Simple Geometry 1 // https://yukicoder.me/problems/no/1381 // □ABCD = |AB| * |BC| = X // △ABP = ( |AB| * |AP| )/2 // △BCZ = ( |BC| * |CQ| ) /2 // △DPQ = ( |DP| * |DQ| ) /2 // △BPQ = □ABCD - △ABP - △BCZ - △DPQ // = X - (|AB|*Y)/2 - (|BC|*Z)/2 -((|AB|-Y)*(|CD|-Z))/2 // = X - ( (|AB|*|BC|)+(Y * Z) ) / 2 // = X - ( X +(Y * Z) ) / 2 // = ( X - (Y * Z) ) / 2 // |AP| = Y // |CQ| = Z // |BP| = |BQ| + W // W = |BP| - |BQ| // *********************** // for debug #define DEBUG #define NOP do{}while(0) #ifdef DEBUG #define TRACE(...) do{printf(__VA_ARGS__);fflush(stdout);}while(0) #define TRACECR do{printf("\n");fflush(stdout);}while(0) #else #define TRACE(...) NOP #define TRACECR NOP #endif #define PRINCR printf("\n") #define NOCR(strig) do{char *p;p=strchr(strig,'\n');if(p)*p='\0';}while(0) // The out-of-date function #define asctime(...) asctime_s(...) #define ctime(...) ctime_s(...) #define strlen(a) mystr_len(a) // for stdio #define INPUT(str) do{char *p;fgets(str,sizeof(str),stdin);p=strchr(str,'\n');if(p)*p='\0';}while(0) #define REP(a,b) for(int a=0;a<(int)(b);++a) #define lolong long long #define INPBUF (250+2) // *********************** // 外部変数 // *********************** int main() { char str[INPBUF]; double ABCD,AP,CQ,W; double ans; INPUT( str ); sscanf( str," %lf %lf %lf %lf", &ABCD, &AP, &CQ, &W); ans = ( ABCD - AP * CQ ) / 2.0; printf("%.10lf\n", ans); return 0; }