結果

問題 No.800 四平方定理
ユーザー htensaihtensai
提出日時 2020-01-29 14:01:19
言語 Java21
(openjdk 21)
結果
AC  
実行時間 148 ms / 2,000 ms
コード長 1,128 bytes
コンパイル時間 2,520 ms
コンパイル使用メモリ 76,180 KB
実行使用メモリ 102,584 KB
最終ジャッジ日時 2024-09-16 00:57:30
合計ジャッジ時間 6,299 ms
ジャッジサーバーID
(参考情報)
judge4 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 56 ms
37,548 KB
testcase_01 AC 57 ms
38,280 KB
testcase_02 AC 54 ms
37,440 KB
testcase_03 AC 56 ms
37,724 KB
testcase_04 AC 55 ms
37,776 KB
testcase_05 AC 58 ms
37,432 KB
testcase_06 AC 58 ms
38,528 KB
testcase_07 AC 58 ms
37,688 KB
testcase_08 AC 60 ms
38,608 KB
testcase_09 AC 57 ms
38,372 KB
testcase_10 AC 108 ms
70,820 KB
testcase_11 AC 110 ms
74,508 KB
testcase_12 AC 110 ms
73,912 KB
testcase_13 AC 107 ms
72,272 KB
testcase_14 AC 108 ms
74,444 KB
testcase_15 AC 112 ms
74,252 KB
testcase_16 AC 113 ms
75,024 KB
testcase_17 AC 110 ms
75,020 KB
testcase_18 AC 118 ms
74,940 KB
testcase_19 AC 119 ms
74,944 KB
testcase_20 AC 51 ms
36,860 KB
testcase_21 AC 50 ms
36,764 KB
testcase_22 AC 115 ms
74,948 KB
testcase_23 AC 148 ms
102,428 KB
testcase_24 AC 134 ms
102,584 KB
testcase_25 AC 136 ms
102,320 KB
testcase_26 AC 52 ms
37,128 KB
testcase_27 AC 54 ms
36,848 KB
testcase_28 AC 135 ms
102,172 KB
testcase_29 AC 127 ms
102,452 KB
testcase_30 AC 129 ms
102,308 KB
testcase_31 AC 124 ms
97,892 KB
testcase_32 AC 130 ms
102,564 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {
    public static void main(String[] args) throws Exception {
        BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
        String[] first = br.readLine().split(" ", 2);
        int n = Integer.parseInt(first[0]);
        int d = Integer.parseInt(first[1]);
        int max = n * n * 2;
        int[] arr1 = new int[max + 1];
        int[] arr2 = new int[max + 1];
        for (int i = 1; i <= n; i++) {
            arr1[i * i * 2]++;
            for (int j = i + 1; j <= n; j++) {
                arr1[i * i + j * j] += 2;
            }
        }
        for (int i = 1; i <= n; i++) {
            for (int j = 1; j <= n; j++) {
                int value = i * i - j * j + d;
                if (value > max) {
                    continue;
                } else if (value <= 0) {
                    break;
                }
                arr2[value]++;
            }
        }
        long total = 0;
        for (int i = 1; i <= max; i++) {
            total += arr1[i] * arr2[i];
        }
        System.out.println(total);
    }
}
0