結果

問題 No.630 門松グラフ
ユーザー 👑 obakyanobakyan
提出日時 2022-04-14 23:33:59
言語 Lua
(LuaJit 2.1.1696795921)
結果
AC  
実行時間 42 ms / 1,500 ms
コード長 628 bytes
コンパイル時間 395 ms
コンパイル使用メモリ 5,504 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-06-06 18:58:04
合計ジャッジ時間 2,716 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 1 ms
5,376 KB
testcase_05 AC 1 ms
5,376 KB
testcase_06 AC 1 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 1 ms
5,376 KB
testcase_09 AC 1 ms
5,376 KB
testcase_10 AC 1 ms
5,376 KB
testcase_11 AC 2 ms
5,376 KB
testcase_12 AC 1 ms
5,376 KB
testcase_13 AC 1 ms
5,376 KB
testcase_14 AC 2 ms
5,376 KB
testcase_15 AC 1 ms
5,376 KB
testcase_16 AC 1 ms
5,376 KB
testcase_17 AC 1 ms
5,376 KB
testcase_18 AC 1 ms
5,376 KB
testcase_19 AC 2 ms
5,376 KB
testcase_20 AC 42 ms
5,376 KB
testcase_21 AC 1 ms
5,376 KB
testcase_22 AC 41 ms
5,376 KB
testcase_23 AC 1 ms
5,376 KB
testcase_24 AC 23 ms
5,376 KB
testcase_25 AC 1 ms
5,376 KB
testcase_26 AC 23 ms
5,376 KB
testcase_27 AC 22 ms
5,376 KB
testcase_28 AC 39 ms
5,376 KB
testcase_29 AC 34 ms
5,376 KB
testcase_30 AC 33 ms
5,376 KB
testcase_31 AC 28 ms
5,376 KB
testcase_32 AC 18 ms
5,376 KB
testcase_33 AC 13 ms
5,376 KB
testcase_34 AC 23 ms
5,376 KB
testcase_35 AC 15 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

local n, m = io.read("*n", "*n")
local large = math.floor(n / 2)
local small = n - large
if m < n - 1 or small * large < m then
  print("NO") os.exit()
end
print("YES")
for i = 1, n do
  io.write(i)
  io.write(i == n and "\n" or " ")
end
for i = 1, small do
  if small + i <= n then
    print(i .. " " .. small + i)
  end
  if 1 < i then
    print(i .. " " .. small + i - 1)
  end
end
local rem = m - n + 1
for i = 1, small do
  if rem == 0 then break end
  for j = small + 1, n do
    if rem == 0 then break end
    if j ~= small + i and j ~= small + i - 1 then
      print(i .. " " .. j)
      rem = rem - 1
    end
  end
end
0