結果

問題 No.781 円周上の格子点の数え上げ
ユーザー htensaihtensai
提出日時 2020-02-13 20:57:37
言語 Java21
(openjdk 21)
結果
AC  
実行時間 208 ms / 2,000 ms
コード長 663 bytes
コンパイル時間 1,956 ms
コンパイル使用メモリ 73,828 KB
実行使用メモリ 82,232 KB
最終ジャッジ日時 2024-10-06 06:23:32
合計ジャッジ時間 5,663 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 116 ms
41,360 KB
testcase_01 AC 109 ms
41,292 KB
testcase_02 AC 118 ms
41,336 KB
testcase_03 AC 106 ms
41,372 KB
testcase_04 AC 121 ms
41,524 KB
testcase_05 AC 118 ms
41,376 KB
testcase_06 AC 129 ms
41,364 KB
testcase_07 AC 120 ms
41,496 KB
testcase_08 AC 138 ms
81,548 KB
testcase_09 AC 158 ms
81,912 KB
testcase_10 AC 117 ms
41,168 KB
testcase_11 AC 106 ms
41,512 KB
testcase_12 AC 165 ms
81,868 KB
testcase_13 AC 208 ms
82,232 KB
testcase_14 AC 122 ms
43,384 KB
testcase_15 AC 118 ms
41,140 KB
testcase_16 AC 120 ms
41,364 KB
testcase_17 AC 163 ms
65,604 KB
testcase_18 AC 139 ms
65,976 KB
testcase_19 AC 143 ms
66,680 KB
testcase_20 AC 145 ms
66,612 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
	public static void main (String[] args) {
		Scanner sc = new Scanner(System.in);
		int x = sc.nextInt();
		int y = sc.nextInt();
		int[] counts = new int[y + 1];
		int max = 0;
		for (int i = 0; i * i <= y; i++) {
		    int di = i * i;
		    for (int j = i; di + j * j <= y; j++) {
		        int dj = di + j * j;
		        if (dj < x) {
		            continue;
		        }
		        int by;
		        if (i == 0 || i == j) {
		            by = 1;
		        } else {
		            by = 2;
		        }
		        counts[dj] += by;
		        max = Math.max(max, counts[dj]);
		    }
		}
		System.out.println(max * 4);
   }
}
0