結果

問題 No.800 四平方定理
ユーザー tentententen
提出日時 2021-12-01 17:43:19
言語 Java21
(openjdk 21)
結果
AC  
実行時間 153 ms / 2,000 ms
コード長 1,411 bytes
コンパイル時間 3,360 ms
コンパイル使用メモリ 77,616 KB
実行使用メモリ 84,884 KB
最終ジャッジ日時 2024-07-04 18:04:22
合計ジャッジ時間 6,457 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 56 ms
49,792 KB
testcase_01 AC 59 ms
50,072 KB
testcase_02 AC 57 ms
49,828 KB
testcase_03 AC 57 ms
49,812 KB
testcase_04 AC 57 ms
50,272 KB
testcase_05 AC 57 ms
50,104 KB
testcase_06 AC 60 ms
50,420 KB
testcase_07 AC 59 ms
50,228 KB
testcase_08 AC 61 ms
50,336 KB
testcase_09 AC 60 ms
50,060 KB
testcase_10 AC 115 ms
68,596 KB
testcase_11 AC 110 ms
70,452 KB
testcase_12 AC 107 ms
70,436 KB
testcase_13 AC 105 ms
70,472 KB
testcase_14 AC 106 ms
70,240 KB
testcase_15 AC 108 ms
70,548 KB
testcase_16 AC 113 ms
70,396 KB
testcase_17 AC 109 ms
70,328 KB
testcase_18 AC 112 ms
70,504 KB
testcase_19 AC 112 ms
70,504 KB
testcase_20 AC 54 ms
50,196 KB
testcase_21 AC 54 ms
50,328 KB
testcase_22 AC 110 ms
70,496 KB
testcase_23 AC 153 ms
84,884 KB
testcase_24 AC 146 ms
84,856 KB
testcase_25 AC 151 ms
84,736 KB
testcase_26 AC 55 ms
49,896 KB
testcase_27 AC 54 ms
50,180 KB
testcase_28 AC 148 ms
84,676 KB
testcase_29 AC 151 ms
84,612 KB
testcase_30 AC 143 ms
84,776 KB
testcase_31 AC 135 ms
82,736 KB
testcase_32 AC 145 ms
84,624 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 <= n * n * 2) {
                    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 next() throws Exception {
        if (!st.hasMoreTokens()) {
            st = new StringTokenizer(br.readLine());
        }
        return st.nextToken();
    }
}
0