結果

問題 No.1509 Swap!!
ユーザー 👑 obakyanobakyan
提出日時 2022-03-29 21:44:35
言語 Lua
(LuaJit 2.1.1696795921)
結果
AC  
実行時間 289 ms / 2,000 ms
コード長 528 bytes
コンパイル時間 305 ms
コンパイル使用メモリ 5,248 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-11-08 20:09:36
合計ジャッジ時間 10,301 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 180 ms
5,248 KB
testcase_03 AC 182 ms
5,248 KB
testcase_04 AC 181 ms
5,248 KB
testcase_05 AC 184 ms
5,248 KB
testcase_06 AC 181 ms
5,248 KB
testcase_07 AC 178 ms
5,248 KB
testcase_08 AC 182 ms
5,248 KB
testcase_09 AC 179 ms
5,248 KB
testcase_10 AC 181 ms
5,248 KB
testcase_11 AC 267 ms
5,248 KB
testcase_12 AC 261 ms
5,248 KB
testcase_13 AC 263 ms
5,248 KB
testcase_14 AC 268 ms
5,248 KB
testcase_15 AC 264 ms
5,248 KB
testcase_16 AC 289 ms
5,248 KB
testcase_17 AC 283 ms
5,248 KB
testcase_18 AC 288 ms
5,248 KB
testcase_19 AC 289 ms
5,248 KB
testcase_20 AC 289 ms
5,248 KB
testcase_21 AC 182 ms
5,248 KB
testcase_22 AC 184 ms
5,248 KB
testcase_23 AC 183 ms
5,248 KB
testcase_24 AC 180 ms
5,248 KB
testcase_25 AC 177 ms
5,248 KB
testcase_26 AC 184 ms
5,248 KB
testcase_27 AC 63 ms
5,248 KB
testcase_28 AC 63 ms
5,248 KB
testcase_29 AC 63 ms
5,248 KB
testcase_30 AC 269 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

local ffi = require("ffi")
local C = ffi.C
ffi.cdef[[
long long atoll(const char*);
]]

local function lltonumber(str)
  return C.atoll(str)
end

local function getgcd(x, y)
  while 0LL < x do
    x, y = y % x, x
  end
  return y
end
local q = io.read("*n", "*l")
for i = 1, q do
  local n, a, b = io.read():match("(%d+) (%d+) (%d+)")
  n = lltonumber(n)
  a = lltonumber(a)
  b = lltonumber(b)
  if getgcd(a, b) ~= 1LL then
    print("NO")
  elseif n - 1 <= n - a + n - b then
    print("YES")
  else
    print("NO")
  end
end
0