結果
| 問題 |
No.550 夏休みの思い出(1)
|
| コンテスト | |
| ユーザー |
tenten
|
| 提出日時 | 2023-06-12 14:05:37 |
| 言語 | Java (openjdk 23) |
| 結果 |
TLE
|
| 実行時間 | - |
| コード長 | 2,860 bytes |
| コンパイル時間 | 2,893 ms |
| コンパイル使用メモリ | 89,128 KB |
| 実行使用メモリ | 89,460 KB |
| 最終ジャッジ日時 | 2024-06-11 16:03:13 |
| 合計ジャッジ時間 | 9,176 ms |
|
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | -- * 3 |
| other | TLE * 1 -- * 54 |
ソースコード
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();
long a = sc.nextLong();
long b = sc.nextLong();
long c = sc.nextLong();
long ans1 = 0;
long aa;
long bb;
if (c == 0) {
aa = a;
bb = b;
} else {
long absc = Math.abs(c);
for (long i = 1; i <= Math.sqrt(absc); i++) {
if (absc % i == 0) {
if (i * i * i + a * i * i + b * i + c == 0) {
ans1 = i;
break;
}
if (-i * i * i + a * i * i - b * i + c == 0) {
ans1 = -i;
break;
}
}
}
aa = a + ans1;
bb = -c / ans1;
}
long absbb = Math.abs(bb);
long ans2 = 0;
long ans3 = 0;
for (long i = 1; i <= Math.sqrt(absbb); i++) {
if (absbb % i == 0) {
if (i * i + aa * i + bb == 0) {
ans2 = i;
ans3 = bb / i;
break;
}
if (i * i - aa * i + bb == 0) {
ans2 = -i;
ans3 = -bb / i;
}
}
}
long[] ans = new long[]{ans1, ans2, ans3};
Arrays.sort(ans);
System.out.println(String.join(" ", Arrays.stream(ans).mapToObj(String::valueOf).toArray(String[]::new)));
}
}
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