結果
問題 |
No.218 経験値1.5倍
|
ユーザー |
👑 |
提出日時 | 2019-03-24 10:25:47 |
言語 | Lua (LuaJit 2.1.1734355927) |
結果 |
WA
|
実行時間 | - |
コード長 | 211 bytes |
コンパイル時間 | 53 ms |
コンパイル使用メモリ | 6,696 KB |
実行使用メモリ | 6,824 KB |
最終ジャッジ日時 | 2024-10-01 20:34:45 |
合計ジャッジ時間 | 977 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
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