結果

問題 No.2767 Add to Divide
ユーザー 👑 箱星箱星
提出日時 2024-05-31 21:45:55
言語 Kotlin
(1.9.23)
結果
WA  
実行時間 -
コード長 1,562 bytes
コンパイル時間 15,603 ms
コンパイル使用メモリ 455,504 KB
実行使用メモリ 59,068 KB
最終ジャッジ日時 2024-05-31 21:46:22
合計ジャッジ時間 22,547 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 296 ms
58,536 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 AC 358 ms
58,888 KB
testcase_04 AC 333 ms
58,320 KB
testcase_05 AC 346 ms
59,004 KB
testcase_06 WA -
testcase_07 AC 345 ms
58,992 KB
testcase_08 AC 382 ms
58,784 KB
testcase_09 WA -
testcase_10 AC 353 ms
58,988 KB
testcase_11 AC 343 ms
58,644 KB
testcase_12 AC 349 ms
58,828 KB
testcase_13 AC 346 ms
58,896 KB
testcase_14 AC 350 ms
58,976 KB
testcase_15 AC 345 ms
58,796 KB
testcase_16 AC 344 ms
58,764 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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) {
                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
0