結果

問題 No.800 四平方定理
ユーザー tentententen
提出日時 2023-07-07 16:14:16
言語 Java21
(openjdk 21)
結果
AC  
実行時間 391 ms / 2,000 ms
コード長 2,021 bytes
コンパイル時間 2,857 ms
コンパイル使用メモリ 83,716 KB
実行使用メモリ 165,356 KB
最終ジャッジ日時 2024-07-21 11:32:13
合計ジャッジ時間 10,841 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 68 ms
38,240 KB
testcase_01 AC 76 ms
39,332 KB
testcase_02 AC 73 ms
38,572 KB
testcase_03 AC 74 ms
38,708 KB
testcase_04 AC 70 ms
38,312 KB
testcase_05 AC 74 ms
38,648 KB
testcase_06 AC 77 ms
40,072 KB
testcase_07 AC 81 ms
39,448 KB
testcase_08 AC 77 ms
39,988 KB
testcase_09 AC 76 ms
39,956 KB
testcase_10 AC 259 ms
102,396 KB
testcase_11 AC 243 ms
109,772 KB
testcase_12 AC 249 ms
108,456 KB
testcase_13 AC 221 ms
104,956 KB
testcase_14 AC 233 ms
109,692 KB
testcase_15 AC 249 ms
109,220 KB
testcase_16 AC 235 ms
110,564 KB
testcase_17 AC 196 ms
110,388 KB
testcase_18 AC 218 ms
110,184 KB
testcase_19 AC 234 ms
110,096 KB
testcase_20 AC 52 ms
36,768 KB
testcase_21 AC 52 ms
36,828 KB
testcase_22 AC 259 ms
110,568 KB
testcase_23 AC 391 ms
165,292 KB
testcase_24 AC 359 ms
165,356 KB
testcase_25 AC 387 ms
165,064 KB
testcase_26 AC 63 ms
36,752 KB
testcase_27 AC 61 ms
37,060 KB
testcase_28 AC 357 ms
164,848 KB
testcase_29 AC 370 ms
165,032 KB
testcase_30 AC 356 ms
165,004 KB
testcase_31 AC 339 ms
156,020 KB
testcase_32 AC 361 ms
165,300 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        int n = sc.nextInt();
        int d = sc.nextInt();
        long[] countsA = new long[n * n * 2 + 1];
        long[] countsB = new long[n * n * 2 + 1];
        for (int i = 1; i <= n; i++) {
            for (int j = 1; j <= n; j++) {
                countsA[i * i + j * j]++;
                int x = i * i + d - j * j;
                if (x >= 1 && x <= n * n * 2) {
                    countsB[x]++;
                }
            }
        }
        long ans = 0;
        for (int i = 0; i <= n * n * 2; i++) {
            ans += countsA[i] * countsB[i];
        }
        System.out.println(ans);
    }
}
class Utilities {
    static String arrayToLineString(Object[] arr) {
        return Arrays.stream(arr).map(x -> x.toString()).collect(Collectors.joining("\n"));
    }
    
    static String arrayToLineString(int[] arr) {
        return String.join("\n", Arrays.stream(arr).mapToObj(String::valueOf).toArray(String[]::new));
    }
}
class Scanner {
    BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
    StringTokenizer st = new StringTokenizer("");
    StringBuilder sb = new StringBuilder();
    
    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 int[] nextIntArray() throws Exception {
        return Stream.of(br.readLine().split(" ")).mapToInt(Integer::parseInt).toArray();
    }
    
    public String next() throws Exception {
        while (!st.hasMoreTokens()) {
            st = new StringTokenizer(br.readLine());
        }
        return st.nextToken();
    }
    
}
0