結果

問題 No.159 刺さらないUSB
ユーザー focus
提出日時 2018-02-21 13:51:51
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 2 ms / 1,000 ms
コード長 256 bytes
コンパイル時間 632 ms
コンパイル使用メモリ 71,728 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-07-02 00:06:21
合計ジャッジ時間 1,312 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 18
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<vector>
#include<algorithm>
#include<string>
#include<cmath>
#include<cstdio>
using namespace std;
int main(){
    double p,q;
    cin >> p >> q;
    if(p*(1-q)*q>(1-p)*q) cout << "YES";
    else    cout << "NO";
    return 0;
}
0