結果
| 問題 |
No.550 夏休みの思い出(1)
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2017-07-29 17:02:32 |
| 言語 | Java (openjdk 23) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 1,433 bytes |
| コンパイル時間 | 2,713 ms |
| コンパイル使用メモリ | 82,980 KB |
| 実行使用メモリ | 51,440 KB |
| 最終ジャッジ日時 | 2024-10-10 19:25:40 |
| 合計ジャッジ時間 | 44,462 ms |
|
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 48 WA * 7 |
ソースコード
import java.math.BigInteger;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.Collections;
import java.util.Scanner;
public class Main {
public static void main(String[] args) {
new Main().run();
}
static long time = 0;
public void run() {
Scanner sc = new Scanner(System.in);
BigInteger a = new BigInteger(sc.next());
BigInteger b = new BigInteger(sc.next());
BigInteger c = new BigInteger(sc.next());
BigInteger MOD = BigInteger.valueOf(3_000_0).nextProbablePrime();
// 9998
ArrayList<BigInteger> ans = new ArrayList<>();
for (BigInteger i = BigInteger.ZERO; i.compareTo(MOD) == -1; i = i.add(BigInteger.ONE)) {
if (f(a, b, c, i).remainder(MOD).equals(BigInteger.ZERO)) {
for (BigInteger j = MOD.multiply(MOD).negate(); j.compareTo(MOD.multiply(MOD)) < 1; j = j.add(MOD)) {
BigInteger v = j.add(i);
if (f(a, b, c, v).equals(BigInteger.ZERO))
ans.add(v);
}
}
}
Collections.sort(ans);
for (int i = 0; i < ans.size(); ++i) {
System.out.print(ans.get(i) + (i == ans.size() - 1 ? "\n" : " "));
}
}
BigInteger f(BigInteger a, BigInteger b, BigInteger c, BigInteger v) {
BigInteger ans = new BigInteger("0");
ans = ans.add(v.pow(3));
ans = ans.add(v.pow(2).multiply(a));
ans = ans.add(v.pow(1).multiply(b));
ans = ans.add(c);
return ans;
}
static void tr(Object... objects) {
System.out.println(Arrays.deepToString(objects));
}
}