結果

問題 No.2125 Inverse Sum
ユーザー tentententen
提出日時 2023-07-25 13:09:06
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 2,844 bytes
コンパイル時間 2,723 ms
コンパイル使用メモリ 96,792 KB
実行使用メモリ 66,068 KB
最終ジャッジ日時 2024-04-10 05:43:51
合計ジャッジ時間 6,891 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 51 ms
50,404 KB
testcase_01 AC 52 ms
50,192 KB
testcase_02 AC 50 ms
50,464 KB
testcase_03 AC 50 ms
50,580 KB
testcase_04 AC 51 ms
50,168 KB
testcase_05 WA -
testcase_06 AC 62 ms
50,836 KB
testcase_07 AC 51 ms
50,464 KB
testcase_08 AC 52 ms
50,360 KB
testcase_09 AC 51 ms
50,040 KB
testcase_10 AC 57 ms
50,396 KB
testcase_11 AC 51 ms
50,184 KB
testcase_12 AC 51 ms
50,400 KB
testcase_13 AC 52 ms
50,260 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 76 ms
50,888 KB
testcase_17 WA -
testcase_18 AC 52 ms
50,428 KB
testcase_19 AC 51 ms
50,532 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 51 ms
50,480 KB
testcase_24 WA -
testcase_25 AC 55 ms
50,320 KB
testcase_26 AC 52 ms
50,024 KB
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 AC 52 ms
50,400 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