結果
問題 | No.152 貯金箱の消失 |
ユーザー | 👑 obakyan |
提出日時 | 2020-04-20 00:08:42 |
言語 | Lua (LuaJit 2.1.1696795921) |
結果 |
AC
|
実行時間 | 15 ms / 5,000 ms |
コード長 | 419 bytes |
コンパイル時間 | 156 ms |
コンパイル使用メモリ | 6,820 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-10-06 08:14:58 |
合計ジャッジ時間 | 819 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
5,248 KB |
testcase_01 | AC | 1 ms
5,248 KB |
testcase_02 | AC | 1 ms
5,248 KB |
testcase_03 | AC | 1 ms
5,248 KB |
testcase_04 | AC | 1 ms
5,248 KB |
testcase_05 | AC | 2 ms
5,248 KB |
testcase_06 | AC | 2 ms
5,248 KB |
testcase_07 | AC | 3 ms
5,248 KB |
testcase_08 | AC | 15 ms
5,248 KB |
testcase_09 | AC | 15 ms
5,248 KB |
testcase_10 | AC | 12 ms
5,248 KB |
testcase_11 | AC | 7 ms
5,248 KB |
ソースコード
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)