結果

問題 No.800 四平方定理
ユーザー ameame
提出日時 2019-03-17 23:35:11
言語 Java21
(openjdk 21)
結果
AC  
実行時間 278 ms / 2,000 ms
コード長 852 bytes
コンパイル時間 2,017 ms
コンパイル使用メモリ 74,892 KB
実行使用メモリ 105,804 KB
最終ジャッジ日時 2024-07-08 05:48:56
合計ジャッジ時間 9,378 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 134 ms
42,004 KB
testcase_01 AC 137 ms
42,416 KB
testcase_02 AC 118 ms
40,980 KB
testcase_03 AC 138 ms
42,140 KB
testcase_04 AC 133 ms
41,788 KB
testcase_05 AC 137 ms
42,188 KB
testcase_06 AC 125 ms
42,056 KB
testcase_07 AC 138 ms
42,448 KB
testcase_08 AC 131 ms
42,836 KB
testcase_09 AC 136 ms
42,156 KB
testcase_10 AC 217 ms
73,872 KB
testcase_11 AC 211 ms
77,968 KB
testcase_12 AC 209 ms
77,456 KB
testcase_13 AC 208 ms
75,436 KB
testcase_14 AC 210 ms
77,740 KB
testcase_15 AC 201 ms
77,280 KB
testcase_16 AC 197 ms
77,948 KB
testcase_17 AC 198 ms
77,952 KB
testcase_18 AC 204 ms
77,636 KB
testcase_19 AC 216 ms
78,016 KB
testcase_20 AC 127 ms
41,392 KB
testcase_21 AC 124 ms
41,252 KB
testcase_22 AC 212 ms
78,096 KB
testcase_23 AC 278 ms
105,804 KB
testcase_24 AC 277 ms
105,628 KB
testcase_25 AC 278 ms
105,348 KB
testcase_26 AC 125 ms
41,056 KB
testcase_27 AC 126 ms
41,012 KB
testcase_28 AC 273 ms
105,248 KB
testcase_29 AC 273 ms
105,264 KB
testcase_30 AC 258 ms
105,180 KB
testcase_31 AC 265 ms
101,028 KB
testcase_32 AC 271 ms
105,576 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int n = sc.nextInt();
        int d = sc.nextInt();
        int[] cnt = new int[n * n * 2 + 1];
        int[] cnt2 = new int[n * n * 2 + 1];
        for (int i = 1; i <= n; i++) {
            for (int j = 1; j <= n; j++) {
                cnt[i * i + j * j]++;
            }
        }
        for (int i = 1; i <= n; i++) {
            for (int j = 1; j <= n; j++) {
                int pos = i * i + d - j * j;
                if (pos > 0 && pos <= n * n * 2) {
                    cnt2[pos]++;
                }
            }
        }
        long ans = 0;
        for (int i = 0; i <= n * n * 2; i++) {
            ans += cnt[i] * cnt2[i];
        }
        System.out.println(ans);
        sc.close();
    }
}
0