結果

問題 No.609 Noelちゃんと星々
ユーザー 👑 obakyanobakyan
提出日時 2019-04-08 16:28:58
言語 Lua
(LuaJit 2.1.1696795921)
結果
AC  
実行時間 79 ms / 2,000 ms
コード長 223 bytes
コンパイル時間 46 ms
コンパイル使用メモリ 6,940 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-07-01 22:52:53
合計ジャッジ時間 2,872 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 59 ms
6,816 KB
testcase_01 AC 29 ms
6,940 KB
testcase_02 AC 20 ms
6,944 KB
testcase_03 AC 27 ms
6,940 KB
testcase_04 AC 15 ms
6,940 KB
testcase_05 AC 75 ms
6,944 KB
testcase_06 AC 63 ms
6,940 KB
testcase_07 AC 37 ms
6,940 KB
testcase_08 AC 8 ms
6,940 KB
testcase_09 AC 23 ms
6,944 KB
testcase_10 AC 46 ms
6,944 KB
testcase_11 AC 43 ms
6,940 KB
testcase_12 AC 54 ms
6,940 KB
testcase_13 AC 10 ms
6,940 KB
testcase_14 AC 4 ms
6,940 KB
testcase_15 AC 65 ms
6,944 KB
testcase_16 AC 75 ms
6,944 KB
testcase_17 AC 59 ms
6,944 KB
testcase_18 AC 20 ms
6,940 KB
testcase_19 AC 62 ms
6,944 KB
testcase_20 AC 77 ms
6,940 KB
testcase_21 AC 79 ms
6,944 KB
testcase_22 AC 77 ms
6,944 KB
testcase_23 AC 78 ms
6,944 KB
testcase_24 AC 78 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = io.read("*n")
t = {}
for i = 1, n do
  table.insert(t, io.read("*n"))
end
table.sort(t)
spos, epos = 1, #t
len = 0
while(spos <= epos) do
  len = len + t[epos] - t[spos]
  spos, epos = spos + 1, epos - 1
end
print(len)
0