結果
問題 | No.2767 Add to Divide |
ユーザー | a |
提出日時 | 2024-05-31 22:21:31 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 119 ms / 2,000 ms |
コード長 | 1,009 bytes |
コンパイル時間 | 348 ms |
コンパイル使用メモリ | 82,372 KB |
実行使用メモリ | 76,028 KB |
最終ジャッジ日時 | 2024-05-31 22:21:33 |
合計ジャッジ時間 | 2,567 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 46 ms
61,280 KB |
testcase_01 | AC | 52 ms
64,884 KB |
testcase_02 | AC | 39 ms
52,832 KB |
testcase_03 | AC | 87 ms
63,120 KB |
testcase_04 | AC | 41 ms
53,552 KB |
testcase_05 | AC | 63 ms
60,376 KB |
testcase_06 | AC | 61 ms
60,108 KB |
testcase_07 | AC | 61 ms
60,892 KB |
testcase_08 | AC | 77 ms
59,852 KB |
testcase_09 | AC | 79 ms
60,868 KB |
testcase_10 | AC | 76 ms
60,556 KB |
testcase_11 | AC | 119 ms
75,696 KB |
testcase_12 | AC | 108 ms
75,624 KB |
testcase_13 | AC | 115 ms
75,868 KB |
testcase_14 | AC | 117 ms
75,644 KB |
testcase_15 | AC | 92 ms
76,028 KB |
testcase_16 | AC | 89 ms
75,956 KB |
ソースコード
def enumerate_divisors(n): divisors = set() for i in range(1, int(n**0.5) + 1): if n % i == 0: divisors.add(i) if i != n // i: divisors.add(n // i) return divisors for _ in range(int(input())): a,b=map(int,input().split()) if b%a==0: print(0) elif b//a==1: print(-1) else: T=True s=0 if a<=10000: for i in range(10000): a+=1 b+=1 s+=1 if b%a==0: print(s) T=False break if b//a==1: print(-1) T=False break if T: x=b-a c=enumerate_divisors(x) for i in reversed(range(1,b//a)): if i in c: print((b-a*(i+1))//i+s) T=False break if T: print(-1)