結果
| 問題 |
No.218 経験値1.5倍
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2019-03-24 10:26:16 |
| 言語 | Lua (LuaJit 2.1.1734355927) |
| 結果 |
AC
|
| 実行時間 | 2 ms / 2,000 ms |
| コード長 | 211 bytes |
| コンパイル時間 | 194 ms |
| コンパイル使用メモリ | 5,248 KB |
| 実行使用メモリ | 5,248 KB |
| 最終ジャッジ日時 | 2024-10-01 20:35:12 |
| 合計ジャッジ時間 | 941 ms |
|
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 31 |
ソースコード
a, b, c = io.read("*n", "*n", "*n")
d = math.floor(a / b)
if(a % b ~= 0) then d = d + 1 end
e = math.floor(a / c)
if(a % c ~= 0) then e = e + 1 end
if(e * 3 <= d * 2) then io.write("YES") else io.write("NO") end