結果

問題 No.781 円周上の格子点の数え上げ
ユーザー YamaKasaYamaKasa
提出日時 2019-02-12 21:43:46
言語 Java21
(openjdk 21)
結果
AC  
実行時間 284 ms / 2,000 ms
コード長 484 bytes
コンパイル時間 2,052 ms
コンパイル使用メモリ 74,456 KB
実行使用メモリ 96,472 KB
最終ジャッジ日時 2024-09-13 09:49:11
合計ジャッジ時間 6,618 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 148 ms
96,104 KB
testcase_01 AC 148 ms
95,984 KB
testcase_02 AC 149 ms
96,056 KB
testcase_03 AC 150 ms
95,784 KB
testcase_04 AC 152 ms
96,308 KB
testcase_05 AC 149 ms
96,472 KB
testcase_06 AC 152 ms
96,036 KB
testcase_07 AC 154 ms
96,116 KB
testcase_08 AC 169 ms
95,832 KB
testcase_09 AC 168 ms
96,272 KB
testcase_10 AC 150 ms
96,152 KB
testcase_11 AC 153 ms
96,024 KB
testcase_12 AC 220 ms
96,084 KB
testcase_13 AC 284 ms
96,160 KB
testcase_14 AC 158 ms
95,776 KB
testcase_15 AC 155 ms
96,164 KB
testcase_16 AC 151 ms
96,132 KB
testcase_17 AC 229 ms
96,396 KB
testcase_18 AC 162 ms
96,040 KB
testcase_19 AC 160 ms
96,196 KB
testcase_20 AC 162 ms
96,164 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int X = sc.nextInt();
		int Y = sc.nextInt();
		int[] cnt = new int[10000001];
		for(int x = 0; x * x <= Y; x++) {
			for(int y = 1; y * y <= Y; y++) {
				int k = x * x + y * y;
				if(k >= X && k <= Y) {
					cnt[k]++;
				}
			}
		}
		int ans = 0;
		for(int i = X; i <= Y; i++) {
			ans = Math.max(cnt[i], ans);
		}
		System.out.println(ans * 4);
	}
}
0