結果

問題 No.2154 あさかつの参加人数
ユーザー 👑 obakyanobakyan
提出日時 2022-12-15 00:24:06
言語 Lua
(LuaJit 2.1.1696795921)
結果
AC  
実行時間 253 ms / 2,000 ms
コード長 302 bytes
コンパイル時間 470 ms
コンパイル使用メモリ 5,760 KB
実行使用メモリ 13,184 KB
最終ジャッジ日時 2024-11-08 16:52:30
合計ジャッジ時間 10,562 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 253 ms
13,056 KB
testcase_01 AC 238 ms
13,056 KB
testcase_02 AC 241 ms
13,184 KB
testcase_03 AC 240 ms
13,184 KB
testcase_04 AC 241 ms
13,184 KB
testcase_05 AC 129 ms
5,248 KB
testcase_06 AC 195 ms
7,424 KB
testcase_07 AC 109 ms
10,496 KB
testcase_08 AC 103 ms
11,008 KB
testcase_09 AC 26 ms
9,088 KB
testcase_10 AC 100 ms
10,112 KB
testcase_11 AC 206 ms
12,544 KB
testcase_12 AC 159 ms
10,368 KB
testcase_13 AC 100 ms
5,248 KB
testcase_14 AC 189 ms
10,240 KB
testcase_15 AC 101 ms
10,752 KB
testcase_16 AC 166 ms
11,008 KB
testcase_17 AC 203 ms
10,240 KB
testcase_18 AC 210 ms
11,392 KB
testcase_19 AC 13 ms
5,248 KB
testcase_20 AC 161 ms
11,520 KB
testcase_21 AC 21 ms
6,912 KB
testcase_22 AC 41 ms
11,264 KB
testcase_23 AC 202 ms
11,392 KB
testcase_24 AC 208 ms
12,288 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

local n, m = io.read("*n", "*n")
local t = {}
for i = 1, n + 1 do
  t[i] = 0
end
for i = 1, m do
  local l, r = io.read("*n", "*n")
  l = n + 1 - l
  r = n + 1 - r
  t[l] = t[l] + 1
  t[r + 1] = t[r + 1] - 1
end
for i = 2, n do
  t[i] = t[i] + t[i - 1]
end
table.remove(t)
print(table.concat(t, "\n"))
0