結果

問題 No.2125 Inverse Sum
ユーザー tentententen
提出日時 2023-07-25 13:11:24
言語 Java21
(openjdk 21)
結果
AC  
実行時間 426 ms / 2,000 ms
コード長 2,844 bytes
コンパイル時間 2,485 ms
コンパイル使用メモリ 96,208 KB
実行使用メモリ 65,984 KB
最終ジャッジ日時 2024-04-10 05:45:55
合計ジャッジ時間 7,089 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 50 ms
50,292 KB
testcase_01 AC 51 ms
50,128 KB
testcase_02 AC 51 ms
50,428 KB
testcase_03 AC 51 ms
50,424 KB
testcase_04 AC 50 ms
50,204 KB
testcase_05 AC 83 ms
51,364 KB
testcase_06 AC 62 ms
50,788 KB
testcase_07 AC 51 ms
50,000 KB
testcase_08 AC 52 ms
50,384 KB
testcase_09 AC 51 ms
50,332 KB
testcase_10 AC 72 ms
50,640 KB
testcase_11 AC 51 ms
50,504 KB
testcase_12 AC 51 ms
50,280 KB
testcase_13 AC 50 ms
50,420 KB
testcase_14 AC 65 ms
51,748 KB
testcase_15 AC 52 ms
50,344 KB
testcase_16 AC 87 ms
52,328 KB
testcase_17 AC 52 ms
50,268 KB
testcase_18 AC 53 ms
50,248 KB
testcase_19 AC 50 ms
50,020 KB
testcase_20 AC 105 ms
52,740 KB
testcase_21 AC 51 ms
50,268 KB
testcase_22 AC 51 ms
50,472 KB
testcase_23 AC 52 ms
50,516 KB
testcase_24 AC 51 ms
50,184 KB
testcase_25 AC 52 ms
50,476 KB
testcase_26 AC 49 ms
50,152 KB
testcase_27 AC 426 ms
65,984 KB
testcase_28 AC 421 ms
61,216 KB
testcase_29 AC 221 ms
58,524 KB
testcase_30 AC 50 ms
50,268 KB
testcase_31 AC 394 ms
61,176 KB
testcase_32 AC 338 ms
58,796 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;
import java.util.stream.*;

public class Main {
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        int p = sc.nextInt();
        int q = sc.nextInt();
        int gcd = getGCD(p, q);
        p /= gcd;
        q /= gcd;
        long sqrt = (long)q * q;
        ArrayList<Long> parts = new ArrayList<>();
        for (long i = 1; i <= Math.sqrt(q); i++) {
            if (q % i == 0) {
                parts.add(i);
                if (i * i < q) {
                    parts.add(q / i);
                }
            }
        }
        TreeSet<Long> result = new TreeSet<>();
        for (long x : parts) {
            for (long y : parts) {
                if (x > y) {
                    continue;
                }
                result.add(x * y);
            }
        }
        ArrayList<Long> ans1 = new ArrayList<>();
        ArrayList<Long> ans2 = new ArrayList<>();
        for (long x : result) {
            long y = x + q;
            long z = sqrt / x + q;
            if (y % p == 0 && z % p == 0) {
                ans1.add(y / p);
                ans2.add(z / p);
            }
        }
        System.out.println(ans1.size());
        StringBuilder sb = new StringBuilder();
        for (int i = 0; i < ans1.size(); i++) {
            sb.append(ans1.get(i)).append(" ").append(ans2.get(i)).append("\n");
        }
        System.out.print(sb);
    }
    
    static int getGCD(int x, int y) {
        if (y == 0) {
            return x;
        } else {
            return getGCD(y, x % y);
        }
    }
}
class Utilities {
    static String arrayToLineString(Object[] arr) {
        return Arrays.stream(arr).map(x -> x.toString()).collect(Collectors.joining("\n"));
    }
    
    static String arrayToLineString(int[] arr) {
        return String.join("\n", Arrays.stream(arr).mapToObj(String::valueOf).toArray(String[]::new));
    }
}
class Scanner {
    BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
    StringTokenizer st = new StringTokenizer("");
    StringBuilder sb = new StringBuilder();
    
    public Scanner() throws Exception {
        
    }
    
    public int nextInt() throws Exception {
        return Integer.parseInt(next());
    }
    
    public long nextLong() throws Exception {
        return Long.parseLong(next());
    }
    
    public double nextDouble() throws Exception {
        return Double.parseDouble(next());
    }
    
    public int[] nextIntArray() throws Exception {
        return Stream.of(br.readLine().split(" ")).mapToInt(Integer::parseInt).toArray();
    }
    
    public String next() throws Exception {
        while (!st.hasMoreTokens()) {
            st = new StringTokenizer(br.readLine());
        }
        return st.nextToken();
    }
    
}
0