結果

問題 No.550 夏休みの思い出(1)
ユーザー tentententen
提出日時 2023-06-12 14:05:37
言語 Java21
(openjdk 21)
結果
TLE  
実行時間 -
コード長 2,860 bytes
コンパイル時間 2,990 ms
コンパイル使用メモリ 81,112 KB
実行使用メモリ 59,400 KB
最終ジャッジ日時 2023-09-02 09:14:17
合計ジャッジ時間 9,768 ms
ジャッジサーバーID
(参考情報)
judge14 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 -- -
testcase_02 -- -
testcase_03 -- -
testcase_04 -- -
testcase_05 -- -
testcase_06 -- -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
testcase_37 -- -
testcase_38 -- -
testcase_39 -- -
testcase_40 -- -
testcase_41 -- -
testcase_42 -- -
testcase_43 -- -
testcase_44 -- -
testcase_45 -- -
testcase_46 -- -
testcase_47 -- -
testcase_48 -- -
testcase_49 -- -
testcase_50 -- -
testcase_51 -- -
testcase_52 -- -
testcase_53 -- -
testcase_54 -- -
testcase_55 -- -
testcase_56 -- -
testcase_57 -- -
権限があれば一括ダウンロードができます

ソースコード

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();
        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();
    }
    
}
0