結果

問題 No.800 四平方定理
ユーザー chika0707chika0707
提出日時 2019-03-17 22:22:58
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 1,092 ms / 2,000 ms
コード長 1,953 bytes
コンパイル時間 776 ms
コンパイル使用メモリ 114,472 KB
実行使用メモリ 87,504 KB
最終ジャッジ日時 2024-07-08 00:09:38
合計ジャッジ時間 15,089 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
24,812 KB
testcase_01 AC 36 ms
27,728 KB
testcase_02 AC 33 ms
23,608 KB
testcase_03 AC 34 ms
27,592 KB
testcase_04 AC 31 ms
26,836 KB
testcase_05 AC 32 ms
25,704 KB
testcase_06 AC 36 ms
25,684 KB
testcase_07 AC 37 ms
25,780 KB
testcase_08 AC 42 ms
27,588 KB
testcase_09 AC 35 ms
25,556 KB
testcase_10 AC 470 ms
59,020 KB
testcase_11 AC 477 ms
54,348 KB
testcase_12 AC 495 ms
58,332 KB
testcase_13 AC 414 ms
57,692 KB
testcase_14 AC 425 ms
58,320 KB
testcase_15 AC 527 ms
56,352 KB
testcase_16 AC 467 ms
56,404 KB
testcase_17 AC 497 ms
56,528 KB
testcase_18 AC 572 ms
56,540 KB
testcase_19 AC 578 ms
56,668 KB
testcase_20 AC 24 ms
24,388 KB
testcase_21 AC 23 ms
24,428 KB
testcase_22 AC 591 ms
56,400 KB
testcase_23 AC 1,054 ms
84,240 KB
testcase_24 AC 859 ms
87,504 KB
testcase_25 AC 1,092 ms
86,152 KB
testcase_26 AC 24 ms
24,624 KB
testcase_27 AC 24 ms
26,556 KB
testcase_28 AC 878 ms
86,120 KB
testcase_29 AC 969 ms
83,884 KB
testcase_30 AC 874 ms
86,300 KB
testcase_31 AC 793 ms
82,316 KB
testcase_32 AC 947 ms
84,076 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.Collections.Generic;
using System.Linq;
using static Input;

public class Prog
{
    private const int INF = 1000000007;
    private const long INFINITY = 9223372036854775807;
    public static void Main()
    {
        int N = NextInt();
        long D = NextLong();
        Dictionary<long, long> xy = new Dictionary<long, long>();

        for (int x = 1; x <= N; x++)
            for (int y = x; y <= N; y++)
            {
                long c = (long)Math.Pow(x, 2) + (long)Math.Pow(y, 2);
                if (!xy.ContainsKey(c)) xy[c] = 0;
                if (x != y) xy[c] += 2;
                else xy[c]++;
            }
        long ans = 0;
        for (int w = 1; w <= N; w++)
        {
            for (int z = 1; z <= N; z++)
            {
                long key = D + (long)Math.Pow(w, 2) - (long)Math.Pow(z, 2);
                if (key <= 0) break;
                if (xy.ContainsKey(key)) ans += xy[key];
            }

        }
        Console.WriteLine(ans);
    }
}

public class Input
{
    private static Queue<string> q = new Queue<string>();
    private static void Confirm() { if (q.Count == 0) foreach (var s in Console.ReadLine().Split(' ')) q.Enqueue(s); }
    public static int NextInt() { Confirm(); return int.Parse(q.Dequeue()); }
    public static long NextLong() { Confirm(); return long.Parse(q.Dequeue()); }
    public static string NextString() { Confirm(); return q.Dequeue(); }
    public static double NextDouble() { Confirm(); return double.Parse(q.Dequeue()); }
    public static int[] LineInt() { return Console.ReadLine().Split(' ').Select(int.Parse).ToArray(); }
    public static long[] LineLong() { return Console.ReadLine().Split(' ').Select(long.Parse).ToArray(); }
    public static string[] LineString() { return Console.ReadLine().Split(' ').ToArray(); }
    public static double[] LineDouble() { return Console.ReadLine().Split(' ').Select(double.Parse).ToArray(); }
}
0