結果
問題 | No.2767 Add to Divide |
ユーザー | 箱星 |
提出日時 | 2024-05-31 21:48:51 |
言語 | Kotlin (1.9.23) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,589 bytes |
コンパイル時間 | 16,811 ms |
コンパイル使用メモリ | 456,552 KB |
実行使用メモリ | 59,260 KB |
最終ジャッジ日時 | 2024-12-20 23:09:15 |
合計ジャッジ時間 | 24,494 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 297 ms
58,592 KB |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | AC | 359 ms
58,704 KB |
testcase_04 | AC | 302 ms
58,504 KB |
testcase_05 | AC | 349 ms
58,916 KB |
testcase_06 | WA | - |
testcase_07 | AC | 355 ms
59,000 KB |
testcase_08 | AC | 365 ms
58,916 KB |
testcase_09 | WA | - |
testcase_10 | AC | 353 ms
58,812 KB |
testcase_11 | AC | 355 ms
59,016 KB |
testcase_12 | AC | 357 ms
58,828 KB |
testcase_13 | AC | 361 ms
58,760 KB |
testcase_14 | AC | 365 ms
58,936 KB |
testcase_15 | AC | 354 ms
58,928 KB |
testcase_16 | AC | 351 ms
58,760 KB |
ソースコード
import java.io.PrintWriter import java.util.* import kotlin.math.* fun PrintWriter.solve() { val numCases = nextInt() case@ for (_i in 0 until numCases) { val a = nextLong() val b = nextLong() // region divisors val number = b - a val divs = mutableListOf<Long>() var divisor = 1L while (divisor * divisor <= number) { if (number % divisor == 0L) { divs.add(divisor) if (divisor * divisor != number) { divs.add(number / divisor) } } divisor++ } // endregion var ans = Long.MAX_VALUE for (d in divs) { val x = (b - a) / d - a if (x >= 0 && (b + x) % (a + x) == 0L) { ans = minOf(ans, x) } } println(if (ans == Long.MAX_VALUE) -1 else ans) } } fun main() { Thread(null, { val writer = PrintWriter(System.out, false) writer.solve() writer.flush() }, "solve", abs(1L.shl(26))) .apply { setUncaughtExceptionHandler { _, e -> e.printStackTrace(); kotlin.system.exitProcess(1) } } .apply { start() }.join() } // region Scanner private var st = StringTokenizer("") private val br = System.`in`.bufferedReader() fun next(): String { while (!st.hasMoreTokens()) st = StringTokenizer(br.readLine()) return st.nextToken() } fun nextInt() = next().toInt() fun nextLong() = next().toLong() fun nextLine() = br.readLine() fun nextDouble() = next().toDouble() // endregion