結果

問題 No.1200 お菓子配り-3
ユーザー 箱星箱星
提出日時 2020-08-28 22:20:29
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 2,094 ms / 4,000 ms
コード長 1,658 bytes
コンパイル時間 14,467 ms
コンパイル使用メモリ 440,040 KB
実行使用メモリ 73,740 KB
最終ジャッジ日時 2024-11-20 22:35:16
合計ジャッジ時間 42,096 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 295 ms
49,908 KB
testcase_01 AC 297 ms
49,964 KB
testcase_02 AC 321 ms
50,880 KB
testcase_03 AC 324 ms
50,792 KB
testcase_04 AC 326 ms
50,772 KB
testcase_05 AC 343 ms
50,852 KB
testcase_06 AC 323 ms
50,856 KB
testcase_07 AC 342 ms
51,372 KB
testcase_08 AC 364 ms
51,572 KB
testcase_09 AC 411 ms
51,552 KB
testcase_10 AC 340 ms
50,952 KB
testcase_11 AC 339 ms
50,932 KB
testcase_12 AC 515 ms
53,088 KB
testcase_13 AC 497 ms
53,096 KB
testcase_14 AC 469 ms
52,972 KB
testcase_15 AC 489 ms
52,804 KB
testcase_16 AC 485 ms
52,860 KB
testcase_17 AC 847 ms
59,376 KB
testcase_18 AC 1,042 ms
62,380 KB
testcase_19 AC 548 ms
53,236 KB
testcase_20 AC 1,546 ms
70,616 KB
testcase_21 AC 1,582 ms
70,760 KB
testcase_22 AC 1,722 ms
73,740 KB
testcase_23 AC 1,524 ms
70,796 KB
testcase_24 AC 1,525 ms
70,704 KB
testcase_25 AC 1,524 ms
70,380 KB
testcase_26 AC 1,515 ms
70,388 KB
testcase_27 AC 297 ms
49,848 KB
testcase_28 AC 2,094 ms
61,708 KB
testcase_29 AC 1,706 ms
66,440 KB
testcase_30 AC 1,693 ms
66,516 KB
testcase_31 AC 294 ms
49,704 KB
testcase_32 AC 294 ms
50,032 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader
import java.io.InputStream
import java.io.InputStreamReader
import java.io.PrintWriter
import java.util.*

fun PrintWriter.solve(sc: FastScanner) {
    val s = sc.nextInt()
    for (_i in 0 until s) {
        val x = sc.nextInt()
        val y = sc.nextInt()
        val cand_cand_a = mutableSetOf<Long>()
        val n1 = x + y
        var d = 1
        while (d * d <= n1) {
            if (n1 % d == 0) {
                cand_cand_a.add(d - 1L)
                cand_cand_a.add(n1 / d - 1L)
            }
            d++
        }
        val n2 = Math.abs(x - y)
        val cand_a = mutableSetOf<Long>()
        for (a in cand_cand_a) {
            if (a >= 2 && n2 % (a - 1) == 0L) {
                cand_a.add(a)
            }
        }
        var ans = 0L
        for (a in cand_a) {
            val num = a * a - 1
            if (a * x > y && a * y > x && (a * x - y) % num == 0L && (a * y - x) % num == 0L) {
                ans++
            }
        }
        if (x == y) {
            ans += x - 1
        }
        println(ans)
    }
}

fun main() {
    val writer = PrintWriter(System.out, false)
    writer.solve(FastScanner(System.`in`))
    writer.flush()
}

class FastScanner(s: InputStream) {
    private var st = StringTokenizer("")
    private val br = BufferedReader(InputStreamReader(s))

    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()
    fun ready() = br.ready()
}
0