結果

問題 No.800 四平方定理
ユーザー kusomushikusomushi
提出日時 2019-07-10 04:29:00
言語 Java21
(openjdk 21)
結果
AC  
実行時間 233 ms / 2,000 ms
コード長 4,030 bytes
コンパイル時間 2,644 ms
コンパイル使用メモリ 78,920 KB
実行使用メモリ 106,060 KB
最終ジャッジ日時 2024-04-21 08:22:26
合計ジャッジ時間 7,313 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 54 ms
37,544 KB
testcase_01 AC 59 ms
38,244 KB
testcase_02 AC 56 ms
37,712 KB
testcase_03 AC 57 ms
38,176 KB
testcase_04 AC 55 ms
38,080 KB
testcase_05 AC 57 ms
38,048 KB
testcase_06 AC 63 ms
38,112 KB
testcase_07 AC 60 ms
38,752 KB
testcase_08 AC 65 ms
39,816 KB
testcase_09 AC 61 ms
38,596 KB
testcase_10 AC 150 ms
72,700 KB
testcase_11 AC 144 ms
74,896 KB
testcase_12 AC 157 ms
75,940 KB
testcase_13 AC 140 ms
71,540 KB
testcase_14 AC 149 ms
74,272 KB
testcase_15 AC 153 ms
76,016 KB
testcase_16 AC 136 ms
74,436 KB
testcase_17 AC 143 ms
74,648 KB
testcase_18 AC 157 ms
78,200 KB
testcase_19 AC 154 ms
78,172 KB
testcase_20 AC 50 ms
37,320 KB
testcase_21 AC 49 ms
37,176 KB
testcase_22 AC 161 ms
78,524 KB
testcase_23 AC 228 ms
106,060 KB
testcase_24 AC 208 ms
101,732 KB
testcase_25 AC 233 ms
105,764 KB
testcase_26 AC 50 ms
37,028 KB
testcase_27 AC 50 ms
41,216 KB
testcase_28 AC 200 ms
101,944 KB
testcase_29 AC 216 ms
104,008 KB
testcase_30 AC 203 ms
101,892 KB
testcase_31 AC 188 ms
97,272 KB
testcase_32 AC 209 ms
102,580 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.Arrays;
import java.util.StringJoiner;
import java.util.StringTokenizer;
import java.util.function.Function;

public class Main {

    static int N, D;

    public static void main(String[] args) {
        FastScanner sc = new FastScanner(System.in);
        N = sc.nextInt();
        D = sc.nextInt();

        System.out.println(solve());
    }

    static long solve() {
        int[] xy = new int[N*N*2 + 1];
        int[] wz = new int[N*N*2 + D + 1];
        for (int i = 1; i <= N; i++) {
            for (int j = 1; j <= N; j++) {
                xy[i*i + j*j]++;
                if( i*i - j*j + D >= 0 ) {
                    wz[i*i - j*j + D]++;
                }
            }
        }
        long ans = 0;
        for (int i = 1; i <= N*N*2; i++) {
            if( xy[i] > 0 && wz[i] > 0 ) {
                ans += xy[i] * wz[i];
            }
        }
        return ans;
    }

    @SuppressWarnings("unused")
    static class FastScanner {
        private BufferedReader reader;
        private StringTokenizer tokenizer;

        FastScanner(InputStream in) {
            reader = new BufferedReader(new InputStreamReader(in));
            tokenizer = null;
        }

        String next() {
            if (tokenizer == null || !tokenizer.hasMoreTokens()) {
                try {
                    tokenizer = new StringTokenizer(reader.readLine());
                } catch (IOException e) {
                    throw new RuntimeException(e);
                }
            }
            return tokenizer.nextToken();
        }

        String nextLine() {
            if (tokenizer == null || !tokenizer.hasMoreTokens()) {
                try {
                    return reader.readLine();
                } catch (IOException e) {
                    throw new RuntimeException(e);
                }
            }
            return tokenizer.nextToken("\n");
        }

        long nextLong() {
            return Long.parseLong(next());
        }

        int nextInt() {
            return Integer.parseInt(next());
        }

        int[] nextIntArray(int n) {
            int[] a = new int[n];
            for (int i = 0; i < n; i++)
                a[i] = nextInt();
            return a;
        }

        int[] nextIntArray(int n, int delta) {
            int[] a = new int[n];
            for (int i = 0; i < n; i++)
                a[i] = nextInt() + delta;
            return a;
        }

        long[] nextLongArray(int n) {
            long[] a = new long[n];
            for (int i = 0; i < n; i++)
                a[i] = nextLong();
            return a;
        }
    }

    static <A> void writeLines(A[] as, Function<A, String> f) {
        PrintWriter pw = new PrintWriter(System.out);
        for (A a : as) {
            pw.println(f.apply(a));
        }
        pw.flush();
    }

    static void writeLines(int[] as) {
        PrintWriter pw = new PrintWriter(System.out);
        for (int a : as) pw.println(a);
        pw.flush();
    }

    static void writeLines(long[] as) {
        PrintWriter pw = new PrintWriter(System.out);
        for (long a : as) pw.println(a);
        pw.flush();
    }

    static int max(int... as) {
        int max = Integer.MIN_VALUE;
        for (int a : as) max = Math.max(a, max);
        return max;
    }

    static int min(int... as) {
        int min = Integer.MAX_VALUE;
        for (int a : as) min = Math.min(a, min);
        return min;
    }

    static void debug(Object... args) {
        StringJoiner j = new StringJoiner(" ");
        for (Object arg : args) {
            if (arg instanceof int[]) j.add(Arrays.toString((int[]) arg));
            else if (arg instanceof long[]) j.add(Arrays.toString((long[]) arg));
            else if (arg instanceof double[]) j.add(Arrays.toString((double[]) arg));
            else if (arg instanceof Object[]) j.add(Arrays.toString((Object[]) arg));
            else j.add(arg.toString());
        }
        System.err.println(j.toString());
    }
}
0