結果

問題 No.781 円周上の格子点の数え上げ
ユーザー neko_the_shadowneko_the_shadow
提出日時 2019-02-06 20:51:39
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 664 bytes
コンパイル時間 3,097 ms
コンパイル使用メモリ 78,624 KB
実行使用メモリ 82,424 KB
最終ジャッジ日時 2024-06-22 23:06:16
合計ジャッジ時間 7,811 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 130 ms
41,592 KB
testcase_02 AC 131 ms
41,820 KB
testcase_03 WA -
testcase_04 AC 129 ms
41,548 KB
testcase_05 WA -
testcase_06 AC 134 ms
41,672 KB
testcase_07 AC 136 ms
41,736 KB
testcase_08 AC 272 ms
82,384 KB
testcase_09 AC 277 ms
82,268 KB
testcase_10 AC 136 ms
41,824 KB
testcase_11 AC 138 ms
41,960 KB
testcase_12 AC 287 ms
82,264 KB
testcase_13 AC 297 ms
82,424 KB
testcase_14 AC 153 ms
43,848 KB
testcase_15 AC 135 ms
41,696 KB
testcase_16 AC 133 ms
41,544 KB
testcase_17 AC 225 ms
66,556 KB
testcase_18 AC 215 ms
66,288 KB
testcase_19 AC 224 ms
66,988 KB
testcase_20 AC 214 ms
66,772 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
import java.util.stream.IntStream;

public class Main {
    public static void main(String[] args) {
        Scanner stdin = new Scanner(System.in);
        int X = stdin.nextInt();
        int Y = stdin.nextInt();
        
        int[] counts = new int[Y + 1];
        for (int x = 0; x * x <= Y; x++) {
            for (int y = 0; y * y <= Y; y++) {
                int z = x * x + y * y;
                if (z <= Y) {
                    counts[z] += 1;
                }
            }
        }
        
        int ans = IntStream.rangeClosed(X, Y).map(i -> counts[i]).max().getAsInt();
        System.out.println(ans * 4);
    }
}
0