結果
問題 | No.1006 Share an Integer |
ユーザー | tenten |
提出日時 | 2023-02-16 14:35:47 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 203 ms / 2,000 ms |
コード長 | 2,425 bytes |
コンパイル時間 | 2,818 ms |
コンパイル使用メモリ | 96,484 KB |
実行使用メモリ | 50,244 KB |
最終ジャッジ日時 | 2024-07-18 15:18:49 |
合計ジャッジ時間 | 6,220 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 52 ms
37,184 KB |
testcase_01 | AC | 51 ms
37,160 KB |
testcase_02 | AC | 51 ms
36,952 KB |
testcase_03 | AC | 51 ms
37,012 KB |
testcase_04 | AC | 49 ms
37,120 KB |
testcase_05 | AC | 51 ms
37,184 KB |
testcase_06 | AC | 50 ms
37,160 KB |
testcase_07 | AC | 51 ms
36,900 KB |
testcase_08 | AC | 51 ms
37,192 KB |
testcase_09 | AC | 50 ms
37,168 KB |
testcase_10 | AC | 52 ms
37,072 KB |
testcase_11 | AC | 151 ms
46,024 KB |
testcase_12 | AC | 185 ms
49,616 KB |
testcase_13 | AC | 176 ms
50,124 KB |
testcase_14 | AC | 178 ms
50,076 KB |
testcase_15 | AC | 187 ms
49,440 KB |
testcase_16 | AC | 147 ms
47,200 KB |
testcase_17 | AC | 133 ms
46,064 KB |
testcase_18 | AC | 186 ms
48,912 KB |
testcase_19 | AC | 188 ms
48,620 KB |
testcase_20 | AC | 191 ms
48,996 KB |
testcase_21 | AC | 203 ms
50,244 KB |
ソースコード
import java.io.*; import java.util.*; import java.util.stream.*; public class Main { public static void main(String[] args) throws Exception { Scanner sc = new Scanner(); int n = sc.nextInt(); int[] values = new int[n + 1]; for (int i = 1; i <= n; i++) { values[i] += i; for (int j = 1; j * i <= n; j++) { values[j * i]--; } } int min = Integer.MAX_VALUE; ArrayList<Integer> ans = new ArrayList<>(); for (int i = 1; i * 2 <= n; i++) { int x = Math.abs(values[i] - values[n - i]); if (min > x) { min = x; ans.clear(); ans.add(i); if (i * 2 < n) { ans.add(n - i); } } else if (min == x) { ans.add(i); if (i * 2 < n) { ans.add(n - i); } } } Collections.sort(ans); StringBuilder sb = new StringBuilder(); for (int x : ans) { sb.append(x).append(" ").append(n - x).append("\n"); } System.out.print(sb); } } class Utilities { static String arrayToLineString(Object[] arr) { return Arrays.stream(arr).map(x -> x.toString()).collect(Collectors.joining("\n")); } static String arrayToLineString(int[] arr) { return String.join("\n", Arrays.stream(arr).mapToObj(String::valueOf).toArray(String[]::new)); } } class Scanner { BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); StringTokenizer st = new StringTokenizer(""); StringBuilder sb = new StringBuilder(); public Scanner() throws Exception { } public int nextInt() throws Exception { return Integer.parseInt(next()); } public long nextLong() throws Exception { return Long.parseLong(next()); } public double nextDouble() throws Exception { return Double.parseDouble(next()); } public int[] nextIntArray() throws Exception { return Stream.of(br.readLine().split(" ")).mapToInt(Integer::parseInt).toArray(); } public String next() throws Exception { while (!st.hasMoreTokens()) { st = new StringTokenizer(br.readLine()); } return st.nextToken(); } }