結果

問題 No.800 四平方定理
ユーザー tentententen
提出日時 2020-09-01 08:40:23
言語 Java21
(openjdk 21)
結果
AC  
実行時間 302 ms / 2,000 ms
コード長 679 bytes
コンパイル時間 2,255 ms
コンパイル使用メモリ 74,128 KB
実行使用メモリ 105,872 KB
最終ジャッジ日時 2024-11-17 18:06:25
合計ジャッジ時間 10,123 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 130 ms
41,800 KB
testcase_01 AC 119 ms
41,496 KB
testcase_02 AC 130 ms
42,004 KB
testcase_03 AC 132 ms
41,892 KB
testcase_04 AC 132 ms
41,880 KB
testcase_05 AC 131 ms
41,964 KB
testcase_06 AC 121 ms
41,580 KB
testcase_07 AC 132 ms
42,400 KB
testcase_08 AC 133 ms
42,784 KB
testcase_09 AC 134 ms
42,448 KB
testcase_10 AC 226 ms
74,056 KB
testcase_11 AC 232 ms
77,572 KB
testcase_12 AC 244 ms
77,148 KB
testcase_13 AC 219 ms
75,284 KB
testcase_14 AC 219 ms
77,716 KB
testcase_15 AC 237 ms
77,464 KB
testcase_16 AC 228 ms
77,816 KB
testcase_17 AC 222 ms
77,828 KB
testcase_18 AC 251 ms
78,000 KB
testcase_19 AC 232 ms
77,564 KB
testcase_20 AC 125 ms
41,032 KB
testcase_21 AC 127 ms
41,024 KB
testcase_22 AC 239 ms
77,728 KB
testcase_23 AC 302 ms
105,740 KB
testcase_24 AC 281 ms
105,872 KB
testcase_25 AC 297 ms
105,256 KB
testcase_26 AC 124 ms
41,056 KB
testcase_27 AC 126 ms
41,076 KB
testcase_28 AC 295 ms
105,324 KB
testcase_29 AC 292 ms
105,572 KB
testcase_30 AC 269 ms
104,896 KB
testcase_31 AC 272 ms
100,900 KB
testcase_32 AC 290 ms
105,404 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

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