結果

問題 No.152 貯金箱の消失
ユーザー 👑 obakyanobakyan
提出日時 2020-04-20 00:08:42
言語 Lua
(LuaJit 2.1.1696795921)
結果
AC  
実行時間 16 ms / 5,000 ms
コード長 419 bytes
コンパイル時間 83 ms
コンパイル使用メモリ 5,120 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-04-16 00:24:17
合計ジャッジ時間 847 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 1 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 4 ms
5,376 KB
testcase_08 AC 16 ms
5,376 KB
testcase_09 AC 16 ms
5,376 KB
testcase_10 AC 13 ms
5,376 KB
testcase_11 AC 8 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

local function getgcd(x, y)
  while 0 < x do
    x, y = y % x, x
  end
  return y
end
local x = io.read("*n")
x = math.floor(x / 4)
local ret = 0
for n = 1, x do
  if x < 2 * (n + 1) * (2 * n + 1) then
    break
  end
  for m = n + 1, x, 2 do
    local sum = 2 * m * (m + n)
    if x < sum then
      break
    else
      if getgcd(m, n) == 1 then
        ret = ret + 1
      end
    end
  end
end
print(ret % 1000003)
0