結果

問題 No.473 和と積の和
ユーザー 37zigen37zigen
提出日時 2016-12-24 02:28:23
言語 Java
(openjdk 23)
結果
MLE  
実行時間 -
コード長 838 bytes
コンパイル時間 4,653 ms
コンパイル使用メモリ 79,564 KB
実行使用メモリ 801,832 KB
最終ジャッジ日時 2024-12-16 03:26:07
合計ジャッジ時間 101,638 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 105 ms
45,124 KB
testcase_01 MLE -
testcase_02 AC 115 ms
47,992 KB
testcase_03 MLE -
testcase_04 AC 428 ms
46,736 KB
testcase_05 MLE -
testcase_06 AC 150 ms
48,512 KB
testcase_07 MLE -
testcase_08 MLE -
testcase_09 MLE -
testcase_10 AC 120 ms
49,772 KB
testcase_11 MLE -
testcase_12 AC 122 ms
49,512 KB
testcase_13 MLE -
testcase_14 AC 123 ms
49,496 KB
testcase_15 MLE -
testcase_16 AC 142 ms
49,980 KB
testcase_17 MLE -
testcase_18 MLE -
testcase_19 AC 147 ms
61,192 KB
testcase_20 MLE -
testcase_21 AC 148 ms
61,192 KB
testcase_22 MLE -
testcase_23 AC 346 ms
72,816 KB
testcase_24 MLE -
testcase_25 TLE -
testcase_26 MLE -
testcase_27 TLE -
testcase_28 AC 244 ms
42,328 KB
testcase_29 TLE -
testcase_30 TLE -
testcase_31 TLE -
testcase_32 TLE -
testcase_33 AC 212 ms
42,892 KB
testcase_34 TLE -
testcase_35 TLE -
testcase_36 TLE -
testcase_37 AC 266 ms
58,200 KB
testcase_38 TLE -
testcase_39 TLE -
testcase_40 TLE -
testcase_41 TLE -
testcase_42 AC 160 ms
39,768 KB
testcase_43 AC 323 ms
53,052 KB
testcase_44 AC 2,850 ms
333,448 KB
testcase_45 AC 139 ms
54,840 KB
testcase_46 MLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

package yukicoder;

import java.util.*;

public class Q473 {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		long x = sc.nextLong();
		// a+b+ab=N
		// (a+1)(b+1)=N+1
		ArrayDeque<List<Long>> que = new ArrayDeque<>();
		que.add(Arrays.asList(x));
		HashSet<List<Long>> ans = new HashSet<>();
		while (!que.isEmpty()) {
			List<Long> lis = que.poll();
			if (lis.size() == n) {
				lis.sort(null);
				ans.add(lis);
			} else {
				for (long d : lis) {
					for (int i = 2; i * i <= (d + 1); ++i) {
						if ((d + 1) % i == 0) {
							List<Long> tmp = new ArrayList();
							tmp.addAll(lis);
							tmp.remove(d);
							tmp.add((long) (i - 1));
							tmp.add((long) ((d + 1) / i - 1));
							que.add(tmp);
						}
					}
				}
			}
		}
		System.out.println(ans.size());
	}
}
0