結果
| 問題 | 
                            No.644 G L C C D M
                             | 
                    
| コンテスト | |
| ユーザー | 
                             uafr_cs
                         | 
                    
| 提出日時 | 2018-02-02 22:31:37 | 
| 言語 | Java  (openjdk 23)  | 
                    
| 結果 | 
                             
                                TLE
                                 
                             
                            
                         | 
                    
| 実行時間 | - | 
| コード長 | 820 bytes | 
| コンパイル時間 | 2,092 ms | 
| コンパイル使用メモリ | 75,092 KB | 
| 実行使用メモリ | 109,072 KB | 
| 最終ジャッジ日時 | 2024-12-31 07:53:00 | 
| 合計ジャッジ時間 | 18,399 ms | 
| 
                            ジャッジサーバーID (参考情報)  | 
                        judge1 / judge4 | 
(要ログイン)
| ファイルパターン | 結果 | 
|---|---|
| other | AC * 23 TLE * 4 | 
ソースコード
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 long N = sc.nextLong();
		final long M = sc.nextLong();
		
		long other_fact = 1;
		for(int i = 1; i <= (N - 2); i++){
			other_fact *= i;
			other_fact %= MOD;
		}
		
		long answer = 0;
		for(long fst = M; fst <= N; fst += M){
			for(long snd = fst + M; snd <= N; snd += M){
				if(gcd(fst, snd) != M){ continue; }
				
				answer += (other_fact * 2) % MOD;
				answer %= MOD;
			}
		}
		
		System.out.println(answer);
	}
}
            
            
            
        
            
uafr_cs