結果
問題 | No.1200 お菓子配り-3 |
ユーザー | NatsubiSogan |
提出日時 | 2020-10-01 17:03:37 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 844 bytes |
コンパイル時間 | 150 ms |
コンパイル使用メモリ | 12,416 KB |
実行使用メモリ | 17,948 KB |
最終ジャッジ日時 | 2024-07-07 01:25:43 |
合計ジャッジ時間 | 20,980 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 25 ms
17,948 KB |
testcase_01 | AC | 25 ms
10,624 KB |
testcase_02 | AC | 57 ms
10,624 KB |
testcase_03 | AC | 57 ms
10,624 KB |
testcase_04 | AC | 54 ms
10,496 KB |
testcase_05 | AC | 64 ms
10,624 KB |
testcase_06 | AC | 54 ms
10,624 KB |
testcase_07 | AC | 295 ms
10,496 KB |
testcase_08 | AC | 306 ms
10,624 KB |
testcase_09 | AC | 293 ms
10,624 KB |
testcase_10 | AC | 288 ms
10,624 KB |
testcase_11 | AC | 281 ms
10,496 KB |
testcase_12 | AC | 2,584 ms
10,752 KB |
testcase_13 | AC | 2,727 ms
10,752 KB |
testcase_14 | AC | 2,710 ms
10,752 KB |
testcase_15 | AC | 2,735 ms
10,752 KB |
testcase_16 | AC | 2,664 ms
10,752 KB |
testcase_17 | TLE | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
testcase_32 | -- | - |
ソースコード
import sys def main(): input = sys.stdin.readline def make_divisors(n): lower_divisors , upper_divisors = [], [] i = 1 while i*i <= n: if n % i == 0: lower_divisors.append(i) if i != n // i: upper_divisors.append(n//i) i += 1 return lower_divisors + upper_divisors[::-1] Q = int(input()) for _ in range(Q): x, y = map(int, input().split()) div = make_divisors(x) if x == y: print(len(div) + x - 3 + x % 2) continue ans = 0 m = abs(x - y) div2 = make_divisors(m) for i in div2: n = m // i + 1 ans += 1 if i < min(x, y) and (min(x, y) - i) % (n + 1) == 0 else 0 print(ans) if __name__ == "__main__": main()