結果

問題 No.1006 Share an Integer
ユーザー tentententen
提出日時 2020-08-21 20:35:21
言語 Java21
(openjdk 21)
結果
AC  
実行時間 238 ms / 2,000 ms
コード長 1,598 bytes
コンパイル時間 2,370 ms
コンパイル使用メモリ 80,084 KB
実行使用メモリ 52,568 KB
最終ジャッジ日時 2024-10-15 04:58:06
合計ジャッジ時間 6,887 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 127 ms
41,152 KB
testcase_01 AC 117 ms
41,148 KB
testcase_02 AC 121 ms
41,084 KB
testcase_03 AC 118 ms
41,016 KB
testcase_04 AC 121 ms
40,932 KB
testcase_05 AC 126 ms
41,204 KB
testcase_06 AC 111 ms
39,952 KB
testcase_07 AC 112 ms
39,888 KB
testcase_08 AC 116 ms
41,268 KB
testcase_09 AC 124 ms
41,076 KB
testcase_10 AC 120 ms
40,960 KB
testcase_11 AC 188 ms
47,696 KB
testcase_12 AC 233 ms
52,360 KB
testcase_13 AC 234 ms
52,568 KB
testcase_14 AC 234 ms
52,224 KB
testcase_15 AC 229 ms
51,840 KB
testcase_16 AC 178 ms
48,808 KB
testcase_17 AC 186 ms
49,308 KB
testcase_18 AC 210 ms
51,176 KB
testcase_19 AC 215 ms
50,800 KB
testcase_20 AC 224 ms
51,712 KB
testcase_21 AC 238 ms
52,332 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

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

    static class Answer implements Comparable<Answer> {
        static int size;
        int left;
        int right;
        
        public Answer(int left, int right) {
            this.left = left;
            this.right = right;
        }
        
        
        public Answer(int left) {
            this(left, size - left);
        }
        
        public int compareTo(Answer another) {
            return left - another.left;
        }
        
        public String toString() {
            return new StringBuilder().append(left).append(" ").append(right).toString();
        }
    }
}

0