結果

問題 No.864 四方演算
ユーザー tentententen
提出日時 2021-05-12 12:14:05
言語 Java21
(openjdk 21)
結果
AC  
実行時間 77 ms / 1,000 ms
コード長 1,372 bytes
コンパイル時間 2,602 ms
コンパイル使用メモリ 77,292 KB
実行使用メモリ 51,216 KB
最終ジャッジ日時 2024-09-22 17:49:11
合計ジャッジ時間 5,402 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 55 ms
50,296 KB
testcase_01 AC 77 ms
51,192 KB
testcase_02 AC 75 ms
51,040 KB
testcase_03 AC 71 ms
51,116 KB
testcase_04 AC 75 ms
51,216 KB
testcase_05 AC 73 ms
51,068 KB
testcase_06 AC 75 ms
51,060 KB
testcase_07 AC 76 ms
50,876 KB
testcase_08 AC 74 ms
50,964 KB
testcase_09 AC 70 ms
50,936 KB
testcase_10 AC 66 ms
50,900 KB
testcase_11 AC 73 ms
50,532 KB
testcase_12 AC 74 ms
51,088 KB
testcase_13 AC 70 ms
50,936 KB
testcase_14 AC 63 ms
50,312 KB
testcase_15 AC 77 ms
50,920 KB
testcase_16 AC 73 ms
50,956 KB
testcase_17 AC 74 ms
51,148 KB
testcase_18 AC 76 ms
51,104 KB
testcase_19 AC 72 ms
51,128 KB
testcase_20 AC 77 ms
51,032 KB
testcase_21 AC 73 ms
51,188 KB
testcase_22 AC 72 ms
51,128 KB
testcase_23 AC 57 ms
49,908 KB
testcase_24 AC 72 ms
51,112 KB
testcase_25 AC 66 ms
50,688 KB
testcase_26 AC 72 ms
51,132 KB
testcase_27 AC 55 ms
50,300 KB
testcase_28 AC 55 ms
50,168 KB
testcase_29 AC 54 ms
50,428 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;

public class Main {
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        long n = sc.nextLong();
        long k = sc.nextLong();
        long ans = 0;
        for (long i = 2; i <= Math.sqrt(k); i++) {
            if (k % i == 0) {
                long tmp = getCount(i, n) * getCount(k / i, n);
                if (i * i < k) {
                    tmp *= 2;
                }
                ans += tmp;
            }
        }
        System.out.println(ans);
    }
    
    static long getCount(long x, long n) {
        if (x == 1 || x > 2 * n) {
            return 0;
        } else if (x <= n) {
            return x - 1;
        } else {
            return n - (x - n) + 1;
        }
    }
}
class Scanner {
    BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
    StringTokenizer st = new StringTokenizer("");
    
    public Scanner() throws Exception {
        
    }
    
    public int nextInt() throws Exception {
        return Integer.parseInt(next());
    }
    
    public long nextLong() throws Exception {
        return Long.parseLong(next());
    }
    
    public String next() throws Exception {
        if (!st.hasMoreTokens()) {
            st = new StringTokenizer(br.readLine());
        }
        return st.nextToken();
    }
}
0