結果
問題 |
No.159 刺さらないUSB
|
ユーザー |
![]() |
提出日時 | 2025-03-31 17:32:26 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 40 ms / 1,000 ms |
コード長 | 102 bytes |
コンパイル時間 | 254 ms |
コンパイル使用メモリ | 82,092 KB |
実行使用メモリ | 53,944 KB |
最終ジャッジ日時 | 2025-03-31 17:33:26 |
合計ジャッジ時間 | 1,748 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 2 |
other | AC * 18 |
ソースコード
p, q = map(float, input().split()) threshold = 1.0 / (2.0 - q) print("YES" if p > threshold else "NO")