結果

問題 No.723 2つの数の和
ユーザー 👑 obakyanobakyan
提出日時 2019-04-28 18:51:03
言語 Lua
(LuaJit 2.1.1734355927)
結果
AC  
実行時間 62 ms / 2,000 ms
コード長 974 bytes
コンパイル時間 472 ms
コンパイル使用メモリ 6,952 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-12-17 18:19:01
合計ジャッジ時間 2,074 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,816 KB
testcase_01 AC 2 ms
6,820 KB
testcase_02 AC 1 ms
6,816 KB
testcase_03 AC 45 ms
6,816 KB
testcase_04 AC 61 ms
6,820 KB
testcase_05 AC 51 ms
6,820 KB
testcase_06 AC 56 ms
6,816 KB
testcase_07 AC 25 ms
6,816 KB
testcase_08 AC 28 ms
6,820 KB
testcase_09 AC 60 ms
6,816 KB
testcase_10 AC 23 ms
6,820 KB
testcase_11 AC 6 ms
6,816 KB
testcase_12 AC 33 ms
6,820 KB
testcase_13 AC 62 ms
6,816 KB
testcase_14 AC 16 ms
6,820 KB
testcase_15 AC 25 ms
6,820 KB
testcase_16 AC 40 ms
6,816 KB
testcase_17 AC 52 ms
6,820 KB
testcase_18 AC 48 ms
6,816 KB
testcase_19 AC 53 ms
6,816 KB
testcase_20 AC 2 ms
6,820 KB
testcase_21 AC 1 ms
6,820 KB
testcase_22 AC 1 ms
6,820 KB
testcase_23 AC 51 ms
6,816 KB
testcase_24 AC 20 ms
6,820 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

ior = io.read
local n, x = ior("*n", "*n")
local a = {}
for i = 1, n do a[i] = ior("*n") end
table.sort(a)
local left, right = 1, n
local cnt = 0
while(left <= right) do
  while(left <= right and a[left] + a[right] < x) do
    left = left + 1
  end
  if(right < left) then
    break
  elseif(left == right and a[left] + a[right] == x) then
    cnt = cnt + 1
    break
  else
    if(a[left] + a[right] == x) then
      if(a[left] == a[right]) then
        cnt = cnt + (right - left + 1) * (right - left + 1)
        break
      else
        local lcnt, rcnt = 1, 1
        for tleft = left + 1, right - 1 do
          if(a[left] == a[tleft]) then lcnt = lcnt + 1
          else break end
        end
        for tright = right - 1, left + 1 do
          if(a[right] == a[tright]) then rcnt = rcnt + 1
          else break end
        end
        cnt = cnt + lcnt * rcnt * 2
        right = right - rcnt
      end
    else
      right = right - 1
    end
  end
end
print(cnt)
0