結果
| 問題 |
No.2125 Inverse Sum
|
| コンテスト | |
| ユーザー |
tenten
|
| 提出日時 | 2023-07-25 13:09:06 |
| 言語 | Java (openjdk 23) |
| 結果 |
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 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 17 WA * 13 |
ソースコード
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();
}
}
tenten