結果

問題 No.723 2つの数の和
ユーザー 👑 obakyanobakyan
提出日時 2019-04-28 17:53:36
言語 Lua
(LuaJit 2.1.1734355927)
結果
RE  
実行時間 -
コード長 627 bytes
コンパイル時間 105 ms
コンパイル使用メモリ 6,688 KB
実行使用メモリ 13,640 KB
最終ジャッジ日時 2024-12-17 15:55:06
合計ジャッジ時間 11,801 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
13,640 KB
testcase_01 AC 1 ms
10,532 KB
testcase_02 AC 1 ms
10,400 KB
testcase_03 AC 227 ms
6,820 KB
testcase_04 AC 589 ms
6,820 KB
testcase_05 AC 154 ms
6,816 KB
testcase_06 AC 525 ms
6,820 KB
testcase_07 AC 47 ms
6,816 KB
testcase_08 AC 80 ms
6,820 KB
testcase_09 AC 184 ms
6,820 KB
testcase_10 AC 98 ms
6,816 KB
testcase_11 AC 6 ms
6,816 KB
testcase_12 AC 68 ms
6,816 KB
testcase_13 RE -
testcase_14 RE -
testcase_15 RE -
testcase_16 RE -
testcase_17 RE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 AC 1 ms
6,820 KB
testcase_21 AC 1 ms
6,820 KB
testcase_22 AC 1 ms
6,816 KB
testcase_23 TLE -
testcase_24 AC 20 ms
13,640 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(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
      for tleft = left, right do
        if(a[tleft] + a[right] == x) then
          cnt = cnt + (tleft == right and 1 or 2)
        end
      end
      right = right - 1
    else
      right = right - 1
    end
  end
end
print(cnt)
0