結果
問題 | No.2043 Ohuton and Makura |
ユーザー | 👑 obakyan |
提出日時 | 2022-08-25 17:53:16 |
言語 | Lua (LuaJit 2.1.1734355927) |
結果 |
AC
|
実行時間 | 11 ms / 2,000 ms |
コード長 | 415 bytes |
コンパイル時間 | 78 ms |
コンパイル使用メモリ | 5,120 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-10-13 00:11:01 |
合計ジャッジ時間 | 1,100 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 18 |
ソースコード
local mmi, mma = math.min, math.max local mfl, mce = math.floor, math.ceil local a, b, s = io.read("*n", "*n", "*n") local ret = 0LL for w = 1, s do local hlim = mfl(s / w) if w <= a then local x = a - w + 1LL local ymin = mma(1, b - hlim + 1) local ymax = b local ysum = (ymax - ymin + 1LL) * (ymin + ymax) / 2LL ret = ret + ysum * x end end ret = tostring(ret):gsub("LL", "") print(ret)