結果

問題 No.2125 Inverse Sum
ユーザー tentententen
提出日時 2023-07-25 13:09:06
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 2,844 bytes
コンパイル時間 3,172 ms
コンパイル使用メモリ 96,360 KB
実行使用メモリ 68,004 KB
最終ジャッジ日時 2024-10-02 07:19:36
合計ジャッジ時間 7,583 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 55 ms
37,200 KB
testcase_01 AC 54 ms
37,080 KB
testcase_02 AC 54 ms
37,032 KB
testcase_03 AC 54 ms
37,252 KB
testcase_04 AC 53 ms
37,040 KB
testcase_05 WA -
testcase_06 AC 67 ms
37,436 KB
testcase_07 AC 57 ms
37,172 KB
testcase_08 AC 59 ms
36,800 KB
testcase_09 AC 56 ms
37,328 KB
testcase_10 AC 63 ms
37,468 KB
testcase_11 AC 56 ms
37,204 KB
testcase_12 AC 57 ms
37,376 KB
testcase_13 AC 55 ms
37,044 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 67 ms
37,700 KB
testcase_17 WA -
testcase_18 AC 56 ms
37,304 KB
testcase_19 AC 58 ms
36,792 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 55 ms
37,028 KB
testcase_24 WA -
testcase_25 AC 58 ms
37,060 KB
testcase_26 AC 55 ms
36,764 KB
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 AC 53 ms
37,064 KB
testcase_31 WA -
testcase_32 WA -
権限があれば一括ダウンロードができます

ソースコード

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);
                }
            }
        }
        HashSet<Long> result = new HashSet<>();
        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