結果

問題 No.1799 Summer Day
ユーザー Masaki Kitaguchi
提出日時 2022-01-13 20:46:17
言語 Lua
(LuaJit 2.1.1734355927)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 173 bytes
コンパイル時間 241 ms
コンパイル使用メモリ 7,072 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-11-17 13:35:14
合計ジャッジ時間 1,044 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 21
権限があれば一括ダウンロードができます

ソースコード

diff #

local n = io.read("*n")
local s = io.read("*n")

local ans = (function ()
  if 25 <= s and s <= 29 * n then
    return "Yes"
  else
    return "No"
  end
end)()

print(ans)
0