結果
| 問題 | No.218 経験値1.5倍 |
| コンテスト | |
| ユーザー |
kawacchu
|
| 提出日時 | 2019-10-08 19:02:26 |
| 言語 | Python3 (3.14.3 + numpy 2.4.4 + scipy 1.17.1) |
| 結果 |
AC
|
| 実行時間 | 96 ms / 2,000 ms |
| コード長 | 151 bytes |
| 記録 | |
| コンパイル時間 | 393 ms |
| コンパイル使用メモリ | 20,956 KB |
| 実行使用メモリ | 15,364 KB |
| 最終ジャッジ日時 | 2026-05-07 19:16:44 |
| 合計ジャッジ時間 | 4,496 ms |
|
ジャッジサーバーID (参考情報) |
judge1_1 / judge3_1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 31 |
ソースコード
a = int(input())
b = int(input())
c = int(input())
d = a//b + (a % b != 0)
e = int((2/3)*d)
if e * c >= a :
print("YES")
else :
print("NO")
kawacchu