結果

問題 No.2767 Add to Divide
ユーザー 👑 箱星箱星
提出日時 2024-05-31 22:07:15
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 364 ms / 2,000 ms
コード長 1,638 bytes
コンパイル時間 15,617 ms
コンパイル使用メモリ 444,492 KB
実行使用メモリ 51,192 KB
最終ジャッジ日時 2024-05-31 22:07:38
合計ジャッジ時間 21,146 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 299 ms
49,760 KB
testcase_01 AC 314 ms
50,300 KB
testcase_02 AC 298 ms
50,048 KB
testcase_03 AC 360 ms
51,192 KB
testcase_04 AC 304 ms
49,908 KB
testcase_05 AC 339 ms
50,544 KB
testcase_06 AC 360 ms
50,488 KB
testcase_07 AC 341 ms
50,412 KB
testcase_08 AC 363 ms
50,392 KB
testcase_09 AC 350 ms
50,372 KB
testcase_10 AC 352 ms
50,368 KB
testcase_11 AC 364 ms
50,436 KB
testcase_12 AC 353 ms
50,456 KB
testcase_13 AC 347 ms
50,652 KB
testcase_14 AC 351 ms
50,496 KB
testcase_15 AC 347 ms
50,684 KB
testcase_16 AC 343 ms
50,540 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()
        if (a == b) {
            println(0)
            continue
        }
        // 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