結果

問題 No.644 G L C C D M
ユーザー uafr_csuafr_cs
提出日時 2018-02-02 23:12:31
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,267 bytes
コンパイル時間 2,225 ms
コンパイル使用メモリ 77,312 KB
実行使用メモリ 55,892 KB
最終ジャッジ日時 2024-06-10 01:32:36
合計ジャッジ時間 5,459 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 95 ms
40,356 KB
testcase_01 AC 110 ms
40,944 KB
testcase_02 AC 110 ms
41,600 KB
testcase_03 AC 107 ms
41,200 KB
testcase_04 AC 106 ms
41,308 KB
testcase_05 AC 108 ms
41,168 KB
testcase_06 WA -
testcase_07 AC 99 ms
40,176 KB
testcase_08 WA -
testcase_09 AC 96 ms
40,028 KB
testcase_10 AC 115 ms
41,380 KB
testcase_11 WA -
testcase_12 AC 106 ms
41,428 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 114 ms
41,556 KB
testcase_16 AC 104 ms
40,456 KB
testcase_17 AC 100 ms
40,448 KB
testcase_18 AC 103 ms
41,060 KB
testcase_19 AC 97 ms
40,160 KB
testcase_20 AC 109 ms
41,352 KB
testcase_21 AC 107 ms
41,572 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 AC 112 ms
41,940 KB
testcase_26 AC 102 ms
40,712 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Arrays;
import java.util.LinkedList;
import java.util.Scanner;

public class Main {
	
	public static long gcd(long a, long b){
		return b == 0 ? a : gcd(b, a % b);
	}
	public static long lcm(long a, long b){
		return a / gcd(a, b) * b;
	}
	
	public static final long MOD = 1000000007;
	
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		
		final int N = sc.nextInt();
		final long M = sc.nextLong();
		
		long other_fact = 1;
		for(int i = 1; i <= (N - 2); i++){
			other_fact *= i;
			other_fact %= MOD;
		}
		/*
		for(long i = M; i <= N; i += M){
			for(long j = M; j <= N; j += M){
				if(i == j || gcd(i, j) != M){ continue; }
				System.out.println(i + " " + j);
			}
		}
		*/
		
		long[] pat = new long[N + 1];
		Arrays.fill(pat, N / M);
		if(M <= N){ pat[(int)(M)]--; }
		for(long i = 2 * M; i <= N; i += M){
			final long p = N / i;
			pat[(int)(i)] -= p;
			
			for(long j = 2 * i; j <= N; j += i){ 
				pat[(int)(j)]--;
				//System.out.println("> " + i + " " + j);
			}
		}
		
		long answer = 0;
		
		for(long fst = M; fst <= N; fst += M){
			//System.out.println(fst + " : " + pat[(int)(fst)]);
			answer += (pat[(int)(fst)] * other_fact) % MOD;
			answer %= MOD;
		}
		
		System.out.println(answer);
	}
}
0