結果

問題 No.1498 Factorization from -1 to 1
ユーザー uwiuwi
提出日時 2021-05-04 15:10:16
言語 Java21
(openjdk 21)
結果
AC  
実行時間 1,026 ms / 3,000 ms
コード長 1,257 bytes
コンパイル時間 4,457 ms
コンパイル使用メモリ 85,880 KB
実行使用メモリ 80,448 KB
最終ジャッジ日時 2024-07-23 10:34:18
合計ジャッジ時間 18,376 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 313 ms
65,604 KB
testcase_01 AC 295 ms
65,456 KB
testcase_02 AC 302 ms
65,680 KB
testcase_03 AC 767 ms
79,332 KB
testcase_04 AC 834 ms
80,068 KB
testcase_05 AC 974 ms
80,448 KB
testcase_06 AC 1,000 ms
80,360 KB
testcase_07 AC 959 ms
80,336 KB
testcase_08 AC 1,026 ms
80,220 KB
testcase_09 AC 963 ms
80,380 KB
testcase_10 AC 395 ms
66,244 KB
testcase_11 AC 398 ms
66,520 KB
testcase_12 AC 407 ms
66,428 KB
testcase_13 AC 401 ms
66,344 KB
testcase_14 AC 393 ms
66,368 KB
testcase_15 AC 287 ms
65,552 KB
testcase_16 AC 318 ms
65,688 KB
testcase_17 AC 313 ms
65,832 KB
testcase_18 AC 293 ms
65,680 KB
testcase_19 AC 288 ms
65,700 KB
testcase_20 AC 303 ms
65,704 KB
testcase_21 AC 289 ms
65,652 KB
testcase_22 AC 304 ms
65,744 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package extra;
import java.io.PrintWriter;
import java.util.*;

public class P1498 {
	static Scanner in;
	static PrintWriter out;
	static String INPUT = "";
	
	static void solve()
	{
		final int n = 100002;
		List<List<Long>> lists = new ArrayList<>();
		for(int i = 0;i < n;i++)lists.add(new ArrayList<>());

		long[] val = new long[n];
		for(int i = 1;i < n;i++){
			val[i] = (long)i*i+1;
		}
		for(int i = 1;i < n;i++){
			if(val[i] == 1)continue;
			long p = val[i];
			for(long j = i;j < n;j+=p){
				int jj = (int)j;
				while(val[jj] % p == 0){
					val[jj] /= p;
					lists.get(jj).add(p);
				}
			}
		}
		for(int Q = ni();Q > 0;Q--){
			List<Long> f = lists.get(ni());
			Collections.sort(f);
			for(long v : f){
				out.print(v + " ");
			}
			out.println();
		}
	}
	
	public static void main(String[] args) throws Exception
	{
		in = INPUT.isEmpty() ? new Scanner(System.in) : new Scanner(INPUT);
		out = new PrintWriter(System.out);
		
		solve();
		out.flush();
	}
	
	static int ni() { return Integer.parseInt(in.next()); }
	static long nl() { return Long.parseLong(in.next()); }
	static double nd() { return Double.parseDouble(in.next()); }
	static void tr(Object... o) { if(INPUT.length() != 0)System.out.println(Arrays.deepToString(o)); }
}
0