結果

問題 No.800 四平方定理
ユーザー tentententen
提出日時 2021-11-02 18:27:12
言語 Java21
(openjdk 21)
結果
AC  
実行時間 130 ms / 2,000 ms
コード長 1,504 bytes
コンパイル時間 2,098 ms
コンパイル使用メモリ 78,124 KB
実行使用メモリ 70,300 KB
最終ジャッジ日時 2024-10-11 23:19:37
合計ジャッジ時間 6,239 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 55 ms
37,520 KB
testcase_01 AC 55 ms
37,632 KB
testcase_02 AC 55 ms
37,296 KB
testcase_03 AC 56 ms
37,308 KB
testcase_04 AC 56 ms
37,168 KB
testcase_05 AC 56 ms
37,296 KB
testcase_06 AC 58 ms
37,552 KB
testcase_07 AC 57 ms
37,452 KB
testcase_08 AC 57 ms
37,464 KB
testcase_09 AC 58 ms
37,584 KB
testcase_10 AC 106 ms
54,976 KB
testcase_11 AC 100 ms
56,504 KB
testcase_12 AC 100 ms
55,972 KB
testcase_13 AC 96 ms
55,228 KB
testcase_14 AC 97 ms
56,640 KB
testcase_15 AC 104 ms
56,420 KB
testcase_16 AC 99 ms
56,832 KB
testcase_17 AC 99 ms
56,656 KB
testcase_18 AC 110 ms
56,292 KB
testcase_19 AC 103 ms
56,692 KB
testcase_20 AC 52 ms
36,840 KB
testcase_21 AC 52 ms
36,784 KB
testcase_22 AC 102 ms
56,696 KB
testcase_23 AC 128 ms
70,048 KB
testcase_24 AC 124 ms
70,260 KB
testcase_25 AC 130 ms
70,260 KB
testcase_26 AC 53 ms
36,976 KB
testcase_27 AC 51 ms
36,972 KB
testcase_28 AC 125 ms
70,040 KB
testcase_29 AC 130 ms
70,300 KB
testcase_30 AC 124 ms
70,240 KB
testcase_31 AC 123 ms
68,048 KB
testcase_32 AC 123 ms
70,244 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        int n = sc.nextInt();
        int d = sc.nextInt();
        int[] counts = new int[n * n * 2 + 1];
        for (int i = 1; i <= n; i++) {
            for (int j = 1; j <= n; j++) {
                counts[i * i + j * j]++;
            }
        }
        long ans = 0;
        for (int i = 1; i <= n; i++) {
            for (int j = 1; j <= n; j++) {
                int x = i * i - j * j + d;
                if (x >= 0 && x < counts.length) {
                    ans += counts[x];
                }
            }
        }
        System.out.println(ans);
    }
}
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 double nextDouble() throws Exception {
        return Double.parseDouble(next());
    }
    
    public String nextLine() throws Exception {
        return br.readLine();
    }
    
    public String next() throws Exception {
        if (!st.hasMoreTokens()) {
            st = new StringTokenizer(br.readLine());
        }
        return st.nextToken();
    }
}
0