結果

問題 No.1525 Meximum Sum
ユーザー 👑 obakyanobakyan
提出日時 2021-06-19 19:55:01
言語 Lua
(LuaJit 2.1.1696795921)
結果
WA  
実行時間 -
コード長 339 bytes
コンパイル時間 247 ms
コンパイル使用メモリ 7,200 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-06-22 22:19:06
合計ジャッジ時間 3,266 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 1 ms
5,376 KB
testcase_04 AC 1 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 1 ms
5,376 KB
testcase_08 AC 29 ms
5,376 KB
testcase_09 AC 37 ms
5,376 KB
testcase_10 AC 13 ms
5,376 KB
testcase_11 AC 20 ms
5,376 KB
testcase_12 AC 39 ms
5,376 KB
testcase_13 AC 45 ms
5,376 KB
testcase_14 AC 44 ms
5,376 KB
testcase_15 AC 44 ms
5,376 KB
testcase_16 AC 44 ms
5,376 KB
testcase_17 AC 43 ms
5,376 KB
testcase_18 AC 44 ms
5,376 KB
testcase_19 AC 43 ms
5,376 KB
testcase_20 AC 44 ms
5,376 KB
testcase_21 AC 44 ms
5,376 KB
testcase_22 AC 45 ms
5,376 KB
testcase_23 AC 41 ms
5,376 KB
testcase_24 AC 44 ms
5,376 KB
testcase_25 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

local mmi, mma = math.min, math.max
local n = io.read("*n")
local t = {}
for i = 1, n do
  t[i] = 0
end
for i = 1, n do
  local a = io.read("*n") + 1
  t[a] = i
end
local left, right = n + 1, 0
local ret = 0
for i = 1, n do
  local p = t[i]
  left = mmi(left, p)
  right = mma(right, p)
  ret = ret + left * (n + 1 - right)
end
print(ret)
0