結果
問題 |
No.159 刺さらないUSB
|
ユーザー |
![]() |
提出日時 | 2018-03-09 01:43:32 |
言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 363 bytes |
コンパイル時間 | 657 ms |
コンパイル使用メモリ | 73,744 KB |
実行使用メモリ | 6,824 KB |
最終ジャッジ日時 | 2024-10-05 08:22:53 |
合計ジャッジ時間 | 1,622 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 2 |
other | AC * 13 WA * 5 |
ソースコード
#include<iostream> #include<string> #include<algorithm> #include<cmath> #include<iomanip> #include<cstring> #include<map> #include<vector> using namespace std; typedef long long int ll; int main(){ double p, q, P1, P2; cin >> p >> q; P1=(1-p)*q; P2=p*q*q; if(P1<P2){ cout << "YES" << endl; } else { cout << "NO" << endl; } return 0; }