結果

問題 No.800 四平方定理
ユーザー bluemeganebluemegane
提出日時 2021-04-29 14:20:59
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 163 ms / 2,000 ms
コード長 762 bytes
コンパイル時間 937 ms
コンパイル使用メモリ 104,064 KB
実行使用メモリ 67,456 KB
最終ジャッジ日時 2024-07-08 13:40:02
合計ジャッジ時間 4,242 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 22 ms
18,108 KB
testcase_01 AC 21 ms
18,304 KB
testcase_02 AC 22 ms
18,232 KB
testcase_03 AC 21 ms
17,852 KB
testcase_04 AC 23 ms
18,108 KB
testcase_05 AC 22 ms
17,976 KB
testcase_06 AC 21 ms
18,176 KB
testcase_07 AC 22 ms
18,432 KB
testcase_08 AC 23 ms
18,304 KB
testcase_09 AC 21 ms
18,304 KB
testcase_10 AC 80 ms
42,240 KB
testcase_11 AC 85 ms
44,032 KB
testcase_12 AC 92 ms
44,672 KB
testcase_13 AC 76 ms
40,960 KB
testcase_14 AC 83 ms
43,264 KB
testcase_15 AC 92 ms
44,672 KB
testcase_16 AC 83 ms
43,392 KB
testcase_17 AC 82 ms
43,264 KB
testcase_18 AC 97 ms
47,232 KB
testcase_19 AC 100 ms
46,976 KB
testcase_20 AC 22 ms
18,048 KB
testcase_21 AC 21 ms
18,048 KB
testcase_22 AC 99 ms
47,104 KB
testcase_23 AC 163 ms
67,456 KB
testcase_24 AC 142 ms
63,360 KB
testcase_25 AC 158 ms
67,328 KB
testcase_26 AC 22 ms
18,176 KB
testcase_27 AC 21 ms
18,048 KB
testcase_28 AC 144 ms
63,232 KB
testcase_29 AC 153 ms
65,280 KB
testcase_30 AC 140 ms
63,360 KB
testcase_31 AC 133 ms
60,160 KB
testcase_32 AC 147 ms
63,872 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using static System.Math;
using System;

public class Hello
{
    static void Main()
    {
        string[] line = Console.ReadLine().Trim().Split(' ');
        var n = int.Parse(line[0]);
        var d = int.Parse(line[1]);
        getAns(n, d);
    }
    static void getAns(int n, int d)
    {
        var a = new int[n * n * 2 + 1];
        var b = new int[n * n + d + 1];
        for (int i = 1; i <= n; i++)
            for (int j = 1; j <= n; j++)
            {
                a[i * i + j * j]++;
                var t = i * i - j * j + d;
                if (t >= 1) b[t]++;
            }
        var imax = Min(a.Length, b.Length);
        var ans = 0L;
        for (int i = 1; i < imax; i++) ans += a[i] * b[i];
        Console.WriteLine(ans);
    }
}
0