結果
| 問題 | No.218 経験値1.5倍 |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2019-03-24 10:25:47 |
| 言語 | Lua (LuaJit 2.1.1774638290) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 211 bytes |
| 記録 | |
| コンパイル時間 | 239 ms |
| コンパイル使用メモリ | 6,656 KB |
| 実行使用メモリ | 6,400 KB |
| 最終ジャッジ日時 | 2026-04-18 03:28:04 |
| 合計ジャッジ時間 | 1,549 ms |
|
ジャッジサーバーID (参考情報) |
judge1_0 / judge3_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | WA * 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