結果

問題 No.1006 Share an Integer
ユーザー 37zigen37zigen
提出日時 2020-03-06 22:31:36
言語 Java21
(openjdk 21)
結果
AC  
実行時間 367 ms / 2,000 ms
コード長 822 bytes
コンパイル時間 2,461 ms
コンパイル使用メモリ 80,260 KB
実行使用メモリ 55,188 KB
最終ジャッジ日時 2024-10-14 08:11:15
合計ジャッジ時間 11,040 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 334 ms
54,604 KB
testcase_01 AC 338 ms
54,576 KB
testcase_02 AC 335 ms
54,740 KB
testcase_03 AC 340 ms
54,704 KB
testcase_04 AC 340 ms
54,900 KB
testcase_05 AC 333 ms
54,852 KB
testcase_06 AC 331 ms
54,608 KB
testcase_07 AC 327 ms
54,672 KB
testcase_08 AC 334 ms
55,024 KB
testcase_09 AC 344 ms
54,696 KB
testcase_10 AC 337 ms
54,748 KB
testcase_11 AC 364 ms
55,076 KB
testcase_12 AC 362 ms
54,684 KB
testcase_13 AC 363 ms
54,988 KB
testcase_14 AC 358 ms
54,892 KB
testcase_15 AC 360 ms
54,832 KB
testcase_16 AC 355 ms
54,992 KB
testcase_17 AC 361 ms
54,736 KB
testcase_18 AC 365 ms
54,840 KB
testcase_19 AC 367 ms
55,064 KB
testcase_20 AC 348 ms
54,872 KB
testcase_21 AC 356 ms
55,188 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.ArrayList;
import java.util.Arrays;
import java.util.HashSet;
import java.util.List;
import java.util.Scanner;

class Main {
	public static void main(String[] args) throws Exception {
		new Main().run();
	}
	
	int NMAX=(int)3e6;
	int[] d=new int[NMAX];
	{
		for(int div=1;div<NMAX;++div){
			for(int i=1;i*div<NMAX;++i){
				d[i*div]++;
			}
		}
	}
	
	int f(int n){
		return n-d[n];
	}
	
	void run() {
		Scanner sc=new Scanner(System.in);
		int X=sc.nextInt();
		int min=Integer.MAX_VALUE;
		for(int A=1;A<=X-1;++A){
			int B=X-A;
			min=Math.min(min,Math.abs(f(A)-f(B)));
		}
		for(int A=1;A<=X-1;++A){
			int B=X-A;
			int v=Math.abs(f(A)-f(B));
			if(v==min){
				System.out.println(A+" "+B);
			}
		}
	}
	
	static void tr(Object... objects) {
		System.out.println(Arrays.deepToString(objects));
	}
	
}
0