結果

問題 No.550 夏休みの思い出(1)
ユーザー 37zigen37zigen
提出日時 2017-07-29 17:01:09
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,024 bytes
コンパイル時間 2,729 ms
コンパイル使用メモリ 87,780 KB
実行使用メモリ 41,752 KB
最終ジャッジ日時 2024-10-10 19:23:04
合計ジャッジ時間 13,850 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 159 ms
41,160 KB
testcase_02 AC 166 ms
41,436 KB
testcase_03 AC 163 ms
41,268 KB
testcase_04 AC 164 ms
41,472 KB
testcase_05 AC 174 ms
41,748 KB
testcase_06 AC 167 ms
41,188 KB
testcase_07 AC 166 ms
41,300 KB
testcase_08 AC 170 ms
41,524 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 177 ms
40,976 KB
testcase_23 AC 166 ms
41,624 KB
testcase_24 AC 164 ms
41,380 KB
testcase_25 AC 166 ms
41,484 KB
testcase_26 AC 169 ms
41,592 KB
testcase_27 AC 170 ms
41,396 KB
testcase_28 AC 170 ms
41,260 KB
testcase_29 AC 164 ms
41,452 KB
testcase_30 AC 167 ms
41,396 KB
testcase_31 AC 164 ms
41,752 KB
testcase_32 AC 165 ms
41,308 KB
testcase_33 AC 166 ms
41,308 KB
testcase_34 AC 166 ms
41,344 KB
testcase_35 AC 172 ms
41,268 KB
testcase_36 AC 168 ms
41,336 KB
testcase_37 AC 165 ms
41,392 KB
testcase_38 AC 168 ms
41,548 KB
testcase_39 AC 167 ms
41,368 KB
testcase_40 AC 166 ms
41,492 KB
testcase_41 AC 168 ms
41,228 KB
testcase_42 AC 169 ms
41,048 KB
testcase_43 AC 170 ms
41,640 KB
testcase_44 AC 169 ms
41,060 KB
testcase_45 AC 166 ms
41,460 KB
testcase_46 AC 169 ms
41,488 KB
testcase_47 AC 169 ms
41,400 KB
testcase_48 AC 165 ms
41,344 KB
testcase_49 AC 170 ms
41,748 KB
testcase_50 AC 169 ms
41,168 KB
testcase_51 AC 166 ms
41,544 KB
testcase_52 AC 171 ms
40,968 KB
testcase_53 AC 169 ms
41,292 KB
testcase_54 AC 171 ms
41,492 KB
testcase_55 AC 169 ms
41,452 KB
testcase_56 AC 166 ms
41,576 KB
testcase_57 AC 172 ms
41,360 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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);
		long a = sc.nextLong();
		long b = sc.nextLong();
		long c = sc.nextLong();
		long MOD = Long.valueOf(BigInteger.valueOf(3_000_0).nextProbablePrime().toString());
		ArrayList<Long> ans = new ArrayList<>();
		for (long i = 0; i <MOD; ++i) {
			if ((i * i * i + a * i * i + b * i + c) % MOD == 0) {
				for (long j = -MOD * 4_000_0; j <= MOD * 4_000_0; j += MOD) {
					long v = j + i;
					if (v * v * v + a * v * v + b * v + c == 0) {
						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" : " "));
		}
	}

	static void tr(Object... objects) {
		System.out.println(Arrays.deepToString(objects));
	}
}
0