結果
| 問題 | No.218 経験値1.5倍 |
| コンテスト | |
| ユーザー |
Novi
|
| 提出日時 | 2019-11-28 06:36:26 |
| 言語 | Python3 (3.14.3 + numpy 2.4.4 + scipy 1.17.1) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 203 bytes |
| 記録 | |
| コンパイル時間 | 599 ms |
| コンパイル使用メモリ | 20,824 KB |
| 実行使用メモリ | 15,492 KB |
| 最終ジャッジ日時 | 2026-05-12 06:20:08 |
| 合計ジャッジ時間 | 5,422 ms |
|
ジャッジサーバーID (参考情報) |
tmp-judge_0 / judge3_1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 16 WA * 15 |
ソースコード
a=int(input())
b=int(input())
c=int(input())
if a%c==0:
if 2*c>=3*b:
print("YES")
else:
print("NO")
else:
if 2*c>=3*b*(1+c):
print("YES")
else:
print("NO")
Novi