結果

問題 No.800 四平方定理
ユーザー keymoonkeymoon
提出日時 2019-03-28 21:26:46
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 341 ms / 2,000 ms
コード長 901 bytes
コンパイル時間 934 ms
コンパイル使用メモリ 110,988 KB
実行使用メモリ 38,784 KB
最終ジャッジ日時 2024-10-14 14:13:58
合計ジャッジ時間 7,150 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
19,396 KB
testcase_01 AC 33 ms
19,184 KB
testcase_02 AC 32 ms
19,160 KB
testcase_03 AC 31 ms
19,164 KB
testcase_04 AC 30 ms
18,900 KB
testcase_05 AC 31 ms
18,904 KB
testcase_06 AC 31 ms
19,060 KB
testcase_07 AC 30 ms
19,040 KB
testcase_08 AC 36 ms
19,064 KB
testcase_09 AC 31 ms
19,072 KB
testcase_10 AC 151 ms
28,288 KB
testcase_11 AC 162 ms
28,544 KB
testcase_12 AC 158 ms
29,568 KB
testcase_13 AC 143 ms
26,880 KB
testcase_14 AC 153 ms
27,520 KB
testcase_15 AC 165 ms
29,696 KB
testcase_16 AC 159 ms
27,648 KB
testcase_17 AC 160 ms
27,776 KB
testcase_18 AC 174 ms
31,744 KB
testcase_19 AC 173 ms
31,744 KB
testcase_20 AC 27 ms
18,944 KB
testcase_21 AC 26 ms
19,072 KB
testcase_22 AC 174 ms
31,360 KB
testcase_23 AC 341 ms
38,784 KB
testcase_24 AC 298 ms
34,816 KB
testcase_25 AC 313 ms
38,400 KB
testcase_26 AC 28 ms
18,944 KB
testcase_27 AC 31 ms
19,072 KB
testcase_28 AC 284 ms
34,560 KB
testcase_29 AC 300 ms
36,352 KB
testcase_30 AC 283 ms
34,688 KB
testcase_31 AC 298 ms
33,280 KB
testcase_32 AC 295 ms
34,944 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using System;
using System.IO;
using System.Linq;
using System.Collections;
using System.Collections.Generic;
using System.Text;
using System.Numerics;
using System.Threading.Tasks;
using System.Text.RegularExpressions;
using static System.Math;
using Debug = System.Diagnostics.Debug;
using LayoutKind = System.Runtime.InteropServices.LayoutKind;

static class P
{
    static void Main()
    {
        var nd = Console.ReadLine().Split().Select(int.Parse).ToArray();
        int[] pows = Enumerable.Range(1, nd[0]).Select(x => x * x).ToArray();
        var dict = pows.SelectMany(x => pows.Select(y => x - y + nd[1])).Aggregate(new int[nd[0] * nd[0] + Max(nd[1], nd[0] * nd[0] + 1)], (x, y) => {
                if (y <= 0) return x;
                x[y]++;
                return x;
            });
        Console.WriteLine(pows.SelectMany(x => pows.Select(y => x + y)).Sum(x => dict[x]));
    }
}
0