結果

問題 No.1006 Share an Integer
ユーザー htensaihtensai
提出日時 2020-03-25 12:43:28
言語 Java21
(openjdk 21)
結果
AC  
実行時間 238 ms / 2,000 ms
コード長 928 bytes
コンパイル時間 2,269 ms
コンパイル使用メモリ 76,384 KB
実行使用メモリ 62,388 KB
最終ジャッジ日時 2024-06-10 09:56:34
合計ジャッジ時間 6,674 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 120 ms
54,032 KB
testcase_01 AC 121 ms
54,104 KB
testcase_02 AC 118 ms
53,956 KB
testcase_03 AC 107 ms
52,524 KB
testcase_04 AC 120 ms
54,184 KB
testcase_05 AC 121 ms
53,800 KB
testcase_06 AC 120 ms
54,156 KB
testcase_07 AC 122 ms
53,964 KB
testcase_08 AC 115 ms
53,960 KB
testcase_09 AC 122 ms
53,956 KB
testcase_10 AC 117 ms
54,088 KB
testcase_11 AC 172 ms
58,020 KB
testcase_12 AC 219 ms
62,288 KB
testcase_13 AC 238 ms
62,108 KB
testcase_14 AC 229 ms
62,388 KB
testcase_15 AC 218 ms
62,168 KB
testcase_16 AC 187 ms
58,784 KB
testcase_17 AC 183 ms
58,248 KB
testcase_18 AC 202 ms
59,600 KB
testcase_19 AC 214 ms
60,236 KB
testcase_20 AC 219 ms
60,268 KB
testcase_21 AC 234 ms
62,168 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int n = sc.nextInt();
        int[] arr = new int[n];
        for (int i = 1; i < n; i++) {
            arr[i] += i - 1;
            for (int j = 1; j * i < n; j++) {
                arr[i * j]--;
            }
        }
        ArrayList<Integer> mins = new ArrayList<>();
        int min = Integer.MAX_VALUE;
        for (int i = 1; i < n; i++) {
            int x = Math.abs(arr[i] - arr[n - i]);
            if (min == x) {
                mins.add(i);
            } else if (min > x) {
                min = x;
                mins.clear();
                mins.add(i);
            }
        }
        StringBuilder sb = new StringBuilder();
        for (int x : mins) {
            sb.append(x).append(" ").append(n - x).append("\n");
        }
        System.out.print(sb);
    }
}
0