結果

問題 No.723 2つの数の和
ユーザー 👑 obakyanobakyan
提出日時 2019-04-28 17:53:36
言語 Lua
(LuaJit 2.1.1696795921)
結果
RE  
実行時間 -
コード長 627 bytes
コンパイル時間 489 ms
コンパイル使用メモリ 5,248 KB
実行使用メモリ 10,752 KB
最終ジャッジ日時 2024-05-09 21:47:37
合計ジャッジ時間 6,584 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
9,088 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 261 ms
5,376 KB
testcase_04 AC 643 ms
5,376 KB
testcase_05 AC 171 ms
5,376 KB
testcase_06 AC 591 ms
5,376 KB
testcase_07 AC 50 ms
5,376 KB
testcase_08 AC 88 ms
5,376 KB
testcase_09 AC 204 ms
5,376 KB
testcase_10 AC 110 ms
5,376 KB
testcase_11 AC 7 ms
5,376 KB
testcase_12 AC 75 ms
5,376 KB
testcase_13 RE -
testcase_14 RE -
testcase_15 RE -
testcase_16 RE -
testcase_17 RE -
testcase_18 TLE -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
権限があれば一括ダウンロードができます

ソースコード

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