結果

問題 No.550 夏休みの思い出(1)
ユーザー aaaaasatoriaaaaasatori
提出日時 2018-02-20 22:40:43
言語 Java21
(openjdk 21)
結果
RE  
実行時間 -
コード長 720 bytes
コンパイル時間 5,152 ms
コンパイル使用メモリ 81,332 KB
実行使用メモリ 55,380 KB
最終ジャッジ日時 2024-09-13 11:47:07
合計ジャッジ時間 17,014 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 167 ms
55,132 KB
testcase_01 AC 178 ms
54,924 KB
testcase_02 AC 180 ms
55,200 KB
testcase_03 AC 176 ms
55,004 KB
testcase_04 AC 180 ms
55,080 KB
testcase_05 AC 179 ms
54,816 KB
testcase_06 AC 175 ms
55,104 KB
testcase_07 AC 178 ms
55,148 KB
testcase_08 AC 177 ms
54,960 KB
testcase_09 AC 169 ms
55,136 KB
testcase_10 AC 166 ms
55,092 KB
testcase_11 AC 163 ms
55,036 KB
testcase_12 AC 166 ms
55,120 KB
testcase_13 AC 160 ms
55,260 KB
testcase_14 AC 163 ms
55,016 KB
testcase_15 RE -
testcase_16 AC 151 ms
54,888 KB
testcase_17 AC 150 ms
54,660 KB
testcase_18 AC 160 ms
55,028 KB
testcase_19 AC 166 ms
54,732 KB
testcase_20 RE -
testcase_21 RE -
testcase_22 AC 174 ms
55,256 KB
testcase_23 AC 161 ms
54,896 KB
testcase_24 AC 173 ms
54,852 KB
testcase_25 AC 176 ms
55,144 KB
testcase_26 AC 178 ms
55,380 KB
testcase_27 AC 175 ms
55,012 KB
testcase_28 AC 175 ms
55,072 KB
testcase_29 AC 176 ms
54,932 KB
testcase_30 AC 177 ms
55,024 KB
testcase_31 AC 167 ms
55,100 KB
testcase_32 AC 167 ms
54,992 KB
testcase_33 AC 169 ms
54,956 KB
testcase_34 AC 166 ms
54,984 KB
testcase_35 AC 161 ms
55,148 KB
testcase_36 AC 169 ms
54,924 KB
testcase_37 AC 169 ms
55,128 KB
testcase_38 AC 168 ms
55,116 KB
testcase_39 AC 171 ms
54,964 KB
testcase_40 AC 177 ms
54,816 KB
testcase_41 AC 179 ms
55,288 KB
testcase_42 AC 179 ms
55,292 KB
testcase_43 AC 172 ms
55,096 KB
testcase_44 AC 160 ms
54,872 KB
testcase_45 AC 171 ms
55,040 KB
testcase_46 AC 173 ms
55,176 KB
testcase_47 AC 164 ms
54,944 KB
testcase_48 AC 166 ms
54,868 KB
testcase_49 RE -
testcase_50 AC 167 ms
55,116 KB
testcase_51 AC 172 ms
55,024 KB
testcase_52 AC 174 ms
55,096 KB
testcase_53 AC 170 ms
54,976 KB
testcase_54 AC 171 ms
54,868 KB
testcase_55 AC 175 ms
55,032 KB
testcase_56 AC 173 ms
54,856 KB
testcase_57 AC 169 ms
55,068 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Arrays;
import java.util.Scanner;

public class No550 {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		long A = sc.nextLong();
		long B = sc.nextLong();
		long C = sc.nextLong();
		long absc = Math.abs(C); //cの絶対値
		long kai[] = new long[3];
		for(long i = 0;i*i*i <= absc;i++) {
			if(i*i*i + A*i*i + B*i + C == 0) {
				kai[0] = i;
				break;
			}
			if(-i*i*i + A*i*i - B*i + C == 0) {
				kai[0] = -i;
				break;
			}
		}
		long a = kai[0] + A;
		long b = -C / kai[0];
		kai[1] = ((-a + (long)Math.sqrt(a*a - 4*b))/2);
		kai[2] = ((-a - (long)Math.sqrt(a*a - 4*b))/2);
		Arrays.sort(kai);
		System.out.println(kai[0] + " " + kai[1] + " " + kai[2]);
	}
	
}
0