結果

問題 No.550 夏休みの思い出(1)
ユーザー 37zigen37zigen
提出日時 2017-07-29 16:56:43
言語 Java21
(openjdk 21)
結果
AC  
実行時間 410 ms / 2,000 ms
コード長 1,605 bytes
コンパイル時間 2,491 ms
コンパイル使用メモリ 89,164 KB
実行使用メモリ 59,808 KB
最終ジャッジ日時 2024-10-11 05:41:11
合計ジャッジ時間 25,689 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 368 ms
59,808 KB
testcase_01 AC 384 ms
57,092 KB
testcase_02 AC 365 ms
48,564 KB
testcase_03 AC 369 ms
47,584 KB
testcase_04 AC 374 ms
47,180 KB
testcase_05 AC 371 ms
47,812 KB
testcase_06 AC 371 ms
47,196 KB
testcase_07 AC 383 ms
47,076 KB
testcase_08 AC 369 ms
47,184 KB
testcase_09 AC 371 ms
46,228 KB
testcase_10 AC 385 ms
46,196 KB
testcase_11 AC 368 ms
46,560 KB
testcase_12 AC 375 ms
46,384 KB
testcase_13 AC 389 ms
46,792 KB
testcase_14 AC 363 ms
46,208 KB
testcase_15 AC 362 ms
45,736 KB
testcase_16 AC 382 ms
46,636 KB
testcase_17 AC 378 ms
46,640 KB
testcase_18 AC 361 ms
47,076 KB
testcase_19 AC 368 ms
46,352 KB
testcase_20 AC 350 ms
46,008 KB
testcase_21 AC 351 ms
45,644 KB
testcase_22 AC 376 ms
46,760 KB
testcase_23 AC 363 ms
46,916 KB
testcase_24 AC 380 ms
47,232 KB
testcase_25 AC 376 ms
46,972 KB
testcase_26 AC 369 ms
46,360 KB
testcase_27 AC 358 ms
47,104 KB
testcase_28 AC 382 ms
47,004 KB
testcase_29 AC 391 ms
46,936 KB
testcase_30 AC 355 ms
48,440 KB
testcase_31 AC 350 ms
46,812 KB
testcase_32 AC 348 ms
46,788 KB
testcase_33 AC 363 ms
46,860 KB
testcase_34 AC 367 ms
47,216 KB
testcase_35 AC 361 ms
47,172 KB
testcase_36 AC 372 ms
47,260 KB
testcase_37 AC 372 ms
46,856 KB
testcase_38 AC 367 ms
46,876 KB
testcase_39 AC 358 ms
46,964 KB
testcase_40 AC 352 ms
46,388 KB
testcase_41 AC 367 ms
46,456 KB
testcase_42 AC 381 ms
47,016 KB
testcase_43 AC 373 ms
46,452 KB
testcase_44 AC 363 ms
47,004 KB
testcase_45 AC 387 ms
46,488 KB
testcase_46 AC 378 ms
47,036 KB
testcase_47 AC 388 ms
47,240 KB
testcase_48 AC 377 ms
46,008 KB
testcase_49 AC 320 ms
46,436 KB
testcase_50 AC 359 ms
47,560 KB
testcase_51 AC 367 ms
46,128 KB
testcase_52 AC 372 ms
47,284 KB
testcase_53 AC 364 ms
47,748 KB
testcase_54 AC 382 ms
47,260 KB
testcase_55 AC 369 ms
46,900 KB
testcase_56 AC 410 ms
47,064 KB
testcase_57 AC 365 ms
47,484 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();
		BigInteger a = BigInteger.valueOf(A);
		BigInteger b = BigInteger.valueOf(B);
		BigInteger c = BigInteger.valueOf(C);
		BigInteger MOD = BigInteger.valueOf(33331);
		A %= 33331;
		B %= 33331;
		C %= 33331;
		ArrayList<Long> ans = new ArrayList<>();
		for (long i = 0; i < 33331; ++i) {
			if (f(A, B, C, i, 33331) % 33331 == 0) {
				for (long j = -33331L * 33331L; j < 33331L * 33331L; j += 33331) {
					long v = i + j;
					if (f(a, b, c, BigInteger.valueOf(v)).equals(BigInteger.ZERO))
						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" : " "));
		}
	}

	BigInteger f(BigInteger a, BigInteger b, BigInteger c, BigInteger v) {
		BigInteger ans = new BigInteger("0");
		ans = ans.add(v.multiply(v).multiply(v));
		ans = ans.add(v.multiply(v).multiply(a));
		ans = ans.add(v.multiply(b));
		ans = ans.add(c);
		return ans;
	}

	long f(long a, long b, long c, long v, long MOD) {
		long ans = 0;
		ans = v * v % MOD * v + a * v % MOD * v;
		ans %= MOD;
		ans += v * b;
		ans += c;
		ans %= MOD;
		return ans;
	}

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