結果
問題 | No.1006 Share an Integer |
ユーザー | ks2m |
提出日時 | 2020-03-06 23:16:07 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,931 bytes |
コンパイル時間 | 2,540 ms |
コンパイル使用メモリ | 88,100 KB |
実行使用メモリ | 56,376 KB |
最終ジャッジ日時 | 2024-10-14 09:45:31 |
合計ジャッジ時間 | 12,247 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 167 ms
42,876 KB |
testcase_01 | AC | 175 ms
42,996 KB |
testcase_02 | AC | 175 ms
43,288 KB |
testcase_03 | WA | - |
testcase_04 | AC | 171 ms
43,244 KB |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | AC | 160 ms
43,464 KB |
testcase_09 | AC | 182 ms
43,304 KB |
testcase_10 | AC | 171 ms
43,360 KB |
testcase_11 | AC | 605 ms
52,984 KB |
testcase_12 | AC | 695 ms
56,104 KB |
testcase_13 | AC | 735 ms
56,308 KB |
testcase_14 | AC | 722 ms
56,224 KB |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | AC | 677 ms
55,460 KB |
testcase_19 | AC | 646 ms
55,148 KB |
testcase_20 | AC | 673 ms
55,612 KB |
testcase_21 | AC | 735 ms
56,376 KB |
ソースコード
import java.io.PrintWriter; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; import java.util.Scanner; public class Main { public static void main(String[] args) throws Exception { Scanner sc = new Scanner(System.in); int x = sc.nextInt(); sc.close(); int x2 = x / 2; Eratosthenes er = new Eratosthenes(x); int min = Integer.MAX_VALUE; List<Integer> list = new ArrayList<>(); for (int i = 1; i <= x2; i++) { int f1 = f(er, i); int f2 = f(er, x - i); int v = Math.abs(f1 - f2); if (v < min) { min = v; list.clear(); list.add(i); } else if (v == min) { list.add(i); } } PrintWriter pw = new PrintWriter(System.out); for (int i = 0; i < list.size(); i++) { pw.println(list.get(i) + " " + (x - list.get(i))); } for (int i = list.size() - 1; i >= 0; i--) { pw.println(x - list.get(i) + " " + list.get(i)); } pw.flush(); } static int f(Eratosthenes er, int n) { if (n == 1) { return 0; } Map<Integer, Integer> soinsu = er.bunkai(n); int d = 1; for (int i : soinsu.values()) { d *= i + 1; } return n - d; } static class Eratosthenes { int[] div; public Eratosthenes(int n) { div = new int[n + 1]; div[0] = -1; div[1] = -1; int end = (int) Math.sqrt(n) + 1; for (int i = 2; i <= end; i++) { if (div[i] == 0) { div[i] = i; for (int j = i * i; j <= n; j+=i) { if (div[j] == 0) div[j] = i; } } } for (int i = end + 1; i <= n; i++) { if (div[i] == 0) div[i] = i; } } public Map<Integer, Integer> bunkai(int x) { Map<Integer, Integer> soinsu = new HashMap<>(); while (x > 1) { Integer d = div[x]; if (soinsu.containsKey(d)) { soinsu.put(d, soinsu.get(d) + 1); } else { soinsu.put(d, 1); } x /= d; } return soinsu; } public boolean isSosuu(int x) { return div[x] == x; } } }