結果

問題 No.742 にゃんにゃんにゃん 猫の挨拶
ユーザー 👑 obakyanobakyan
提出日時 2019-04-28 11:21:35
言語 Lua
(LuaJit 2.1.1696795921)
結果
TLE  
実行時間 -
コード長 215 bytes
コンパイル時間 646 ms
コンパイル使用メモリ 6,944 KB
実行使用メモリ 10,624 KB
最終ジャッジ日時 2024-05-08 23:19:24
合計ジャッジ時間 4,791 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
10,624 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 1 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 3 ms
5,376 KB
testcase_07 AC 7 ms
5,376 KB
testcase_08 AC 18 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 1 ms
5,376 KB
testcase_11 TLE -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

ior = io.read
local n = ior("*n")
local dst = {}
for i = 1, n do
  dst[i] = ior("*n")
end
local cnt = 0
for i = 1, n - 1 do
  for j = i + 1, n do
    if(dst[j] <= dst[i]) then cnt = cnt + 1 end
  end
end
print(cnt)
0