結果

問題 No.800 四平方定理
ユーザー GrenacheGrenache
提出日時 2019-04-29 00:27:17
言語 Java21
(openjdk 21)
結果
AC  
実行時間 337 ms / 2,000 ms
コード長 967 bytes
コンパイル時間 3,911 ms
コンパイル使用メモリ 77,460 KB
実行使用メモリ 117,104 KB
最終ジャッジ日時 2024-06-01 09:58:42
合計ジャッジ時間 12,273 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 144 ms
52,156 KB
testcase_01 AC 150 ms
42,572 KB
testcase_02 AC 147 ms
42,100 KB
testcase_03 AC 151 ms
42,196 KB
testcase_04 AC 129 ms
40,868 KB
testcase_05 AC 130 ms
41,176 KB
testcase_06 AC 144 ms
42,780 KB
testcase_07 AC 143 ms
42,908 KB
testcase_08 AC 147 ms
43,044 KB
testcase_09 AC 148 ms
42,492 KB
testcase_10 AC 257 ms
74,104 KB
testcase_11 AC 260 ms
87,308 KB
testcase_12 AC 259 ms
88,572 KB
testcase_13 AC 253 ms
86,496 KB
testcase_14 AC 257 ms
88,760 KB
testcase_15 AC 252 ms
88,908 KB
testcase_16 AC 264 ms
89,416 KB
testcase_17 AC 264 ms
89,244 KB
testcase_18 AC 260 ms
89,300 KB
testcase_19 AC 254 ms
89,228 KB
testcase_20 AC 137 ms
54,032 KB
testcase_21 AC 119 ms
40,036 KB
testcase_22 AC 254 ms
78,464 KB
testcase_23 AC 329 ms
114,880 KB
testcase_24 AC 326 ms
117,104 KB
testcase_25 AC 333 ms
116,920 KB
testcase_26 AC 136 ms
54,020 KB
testcase_27 AC 133 ms
41,208 KB
testcase_28 AC 328 ms
105,636 KB
testcase_29 AC 333 ms
114,908 KB
testcase_30 AC 320 ms
116,868 KB
testcase_31 AC 322 ms
112,656 KB
testcase_32 AC 337 ms
117,068 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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


public class Main_yukicoder800 {

	private static Scanner sc;
	private static Printer pr;

	private static void solve() {
		int n = sc.nextInt();
		int d = sc.nextInt();

		int[] xy = new int[n * n * 2 + 1];
		int[] wz = new int[n * n * 2 + 1];
		for (int i = 1; i <= n; i++) {
			for (int j = 1; j <= n; j++) {
				xy[i * i + j * j]++;
				wz[i * i - j * j + (n * n - 1)]++;
			}
		}

		long ans = 0;
		for (int i = 1; i <= n * n * 2; i++) {
			if (xy[i] > 0) {
				int tmp = i - d + (n * n - 1);
				if (tmp >= 0 && tmp < n * n * 2 + 1) {
					ans += xy[i] * wz[tmp];
				}
			}
		}
		
		pr.println(ans);
	}

	// ---------------------------------------------------
	public static void main(String[] args) {
		sc = new Scanner(System.in);
		pr = new Printer(System.out);
			
		solve();
			
		pr.close();
		sc.close();
	}

	static class Printer extends PrintWriter {
		Printer(OutputStream out) {
			super(out);
		}
	}
}
0