結果
問題 | No.3001 確率論ってこういうものですよね |
ユーザー | mudbdb |
提出日時 | 2017-06-24 18:01:23 |
言語 | C90 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 808 bytes |
コンパイル時間 | 303 ms |
コンパイル使用メモリ | 22,144 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-10-04 02:55:33 |
合計ジャッジ時間 | 829 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
5,248 KB |
testcase_01 | AC | 1 ms
5,248 KB |
testcase_02 | AC | 0 ms
5,248 KB |
testcase_03 | AC | 0 ms
5,248 KB |
testcase_04 | AC | 1 ms
5,248 KB |
testcase_05 | WA | - |
testcase_06 | AC | 0 ms
5,248 KB |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
コンパイルメッセージ
main.c: In function ‘main’: main.c:21:3: warning: ignoring return value of ‘scanf’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 21 | scanf("%lf %lf",&x,&y); | ^~~~~~~~~~~~~~~~~~~~~~
ソースコード
#include <stdio.h> // A:m,m // B:m,w // C:w,m // D:w,w // X=P(A or B)=P(A)+P(B) => 0<=P(B)<=X // Y=P(A or C)=P(A)+P(C) // 1-X=P(C or D)=P(C)+P(D) // 1-Y=P(B or D)=P(B)+P(D) => 0<=P(B)<=1-Y // 0<=P(B)<=min(X,1-Y) // // X==0 => P(A)==0, P(B)==0, P(C)==Y, P(D)==1-Y // X==1 => P(C)==0, P(D)==0, P(A)==Y, P(B)==1-Y // Y==0 => P(A)==0, P(C)==0, P(B)==X, P(D)==1-Y // Y==1 => P(B)==0, P(D)==0, P(A)==X, P(B)==1-Y double min(double a, double b) { return ((a<=b)?a:b); } int main() { double x,y; scanf("%lf %lf",&x,&y); if (x == 0.0) { printf("%f %f\n",0.0,0.0); } else if (x == 1.0) { printf("%f %f\n",1.0-y,1.0-y); } else if (y == 0.0) { printf("%f %f\n",x,x); } else if (y == 1.0) { printf("%f %f\n",1.0-y,1.0-y); } else { printf("%f %f\n",min(x,1-y),0.0); } return 0; }