結果

問題 No.550 夏休みの思い出(1)
ユーザー 37zigen37zigen
提出日時 2017-07-29 16:09:50
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 935 bytes
コンパイル時間 2,315 ms
コンパイル使用メモリ 85,468 KB
実行使用メモリ 57,272 KB
最終ジャッジ日時 2024-10-10 19:11:39
合計ジャッジ時間 12,704 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 151 ms
53,960 KB
testcase_02 AC 160 ms
54,044 KB
testcase_03 AC 156 ms
54,236 KB
testcase_04 AC 153 ms
54,296 KB
testcase_05 AC 146 ms
53,884 KB
testcase_06 AC 147 ms
52,956 KB
testcase_07 AC 153 ms
54,096 KB
testcase_08 AC 144 ms
54,116 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 147 ms
54,072 KB
testcase_23 AC 154 ms
54,004 KB
testcase_24 AC 153 ms
54,264 KB
testcase_25 AC 176 ms
53,860 KB
testcase_26 AC 153 ms
54,028 KB
testcase_27 AC 188 ms
53,828 KB
testcase_28 AC 164 ms
54,380 KB
testcase_29 AC 177 ms
54,176 KB
testcase_30 AC 152 ms
54,096 KB
testcase_31 AC 147 ms
53,908 KB
testcase_32 AC 154 ms
54,132 KB
testcase_33 AC 129 ms
53,088 KB
testcase_34 AC 209 ms
54,080 KB
testcase_35 AC 143 ms
54,060 KB
testcase_36 AC 150 ms
53,960 KB
testcase_37 AC 161 ms
54,020 KB
testcase_38 AC 165 ms
54,180 KB
testcase_39 AC 145 ms
53,076 KB
testcase_40 AC 141 ms
53,980 KB
testcase_41 AC 147 ms
54,104 KB
testcase_42 AC 146 ms
54,044 KB
testcase_43 AC 154 ms
53,436 KB
testcase_44 AC 146 ms
54,040 KB
testcase_45 AC 175 ms
54,216 KB
testcase_46 AC 164 ms
54,180 KB
testcase_47 AC 173 ms
53,828 KB
testcase_48 AC 145 ms
54,160 KB
testcase_49 AC 144 ms
54,120 KB
testcase_50 AC 148 ms
53,840 KB
testcase_51 AC 142 ms
53,976 KB
testcase_52 WA -
testcase_53 WA -
testcase_54 WA -
testcase_55 WA -
testcase_56 WA -
testcase_57 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

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 = 3_000_0;
		ArrayList<Long> ans = new ArrayList<>();
		for (long i = 0; i < 3_000_0; ++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