結果

問題 No.781 円周上の格子点の数え上げ
ユーザー nanaenanae
提出日時 2019-01-11 22:09:24
言語 D
(dmd 2.106.1)
結果
AC  
実行時間 1,020 ms / 2,000 ms
コード長 1,950 bytes
コンパイル時間 764 ms
コンパイル使用メモリ 106,200 KB
実行使用メモリ 206,596 KB
最終ジャッジ日時 2024-06-13 02:38:18
合計ジャッジ時間 5,448 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 96 ms
6,816 KB
testcase_01 AC 96 ms
6,940 KB
testcase_02 AC 95 ms
6,940 KB
testcase_03 AC 96 ms
6,940 KB
testcase_04 AC 96 ms
6,944 KB
testcase_05 AC 96 ms
6,944 KB
testcase_06 AC 96 ms
6,940 KB
testcase_07 AC 96 ms
6,940 KB
testcase_08 AC 91 ms
6,940 KB
testcase_09 AC 90 ms
6,944 KB
testcase_10 AC 96 ms
6,944 KB
testcase_11 AC 98 ms
6,944 KB
testcase_12 AC 534 ms
60,344 KB
testcase_13 AC 1,020 ms
206,596 KB
testcase_14 AC 96 ms
6,940 KB
testcase_15 AC 93 ms
5,376 KB
testcase_16 AC 92 ms
5,376 KB
testcase_17 AC 534 ms
62,468 KB
testcase_18 AC 93 ms
5,376 KB
testcase_19 AC 93 ms
5,376 KB
testcase_20 AC 93 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import std.stdio, std.string, std.conv;
import std.range, std.algorithm, std.array, std.typecons, std.container;
import std.math, std.numeric, core.bitop;

enum mod = 10L ^^ 9 + 7;

void main() {
    int x, y;
    scan(x, y);

    int[int] sq;

    /*
    foreach (i ; 0 .. 10^^4) {
        sq[i*i] = i;
    }
    */

    int ans;

    foreach (i ; 0 .. 10^^4) {
        foreach (j ; 0 .. i + 1) {
            int d = i*i + j*j;
            if (d < x || d > y) continue;
            debug {
                writefln("i, j, d = %d, %d, %d", i, j, d);
            }
            if (i == 0 || j == 0 || i == j) {
                sq[d] += 4;
            }
            else {
                sq[d] += 8;
            }
            ans = max(ans, sq[d]);
        }
    }

    /+
    foreach (r ; x .. y + 1) {
        int tmp;

        foreach (i ; 0 .. r) {
            int d = r - i*i;
            if (d < 0) {
                break;
            }
            if (!(d in sq)) {
                continue;
            }
            int j = sq[d];

            
            if (i > j) {
                break;
            }

            debug {
                writefln("(i, j) = (%d, %d)", i, j);
            }

            if (i == j || i == 0) {
                tmp += 4;
            }
            else {
                tmp += 8;
            }
        }

        ans = max(ans, tmp);
    }
    +/

    writeln(ans);
}





void scan(T...)(ref T args) {
    import std.stdio : readln;
    import std.algorithm : splitter;
    import std.conv : to;
    import std.range.primitives;

    auto line = readln().splitter();
    foreach (ref arg; args) {
        arg = line.front.to!(typeof(arg));
        line.popFront();
    }
    assert(line.empty);
}


void fillAll(R, T)(ref R arr, T value) {
    static if (is(typeof(arr[] = value))) {
        arr[] = value;
    }
    else {
        foreach (ref e; arr) {
            fillAll(e, value);
        }
    }
}
0