結果

問題 No.781 円周上の格子点の数え上げ
ユーザー kekuremakekurema
提出日時 2019-04-03 09:24:45
言語 C#(csc)
(csc 3.9.0)
結果
RE  
実行時間 -
コード長 1,288 bytes
コンパイル時間 794 ms
コンパイル使用メモリ 108,100 KB
実行使用メモリ 48,568 KB
最終ジャッジ日時 2024-12-17 13:38:15
合計ジャッジ時間 15,097 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 RE -
testcase_01 WA -
testcase_02 AC 22 ms
32,632 KB
testcase_03 AC 21 ms
44,308 KB
testcase_04 AC 24 ms
32,676 KB
testcase_05 AC 23 ms
33,072 KB
testcase_06 AC 22 ms
32,792 KB
testcase_07 AC 22 ms
24,176 KB
testcase_08 AC 28 ms
23,972 KB
testcase_09 AC 28 ms
24,032 KB
testcase_10 AC 167 ms
25,916 KB
testcase_11 AC 866 ms
24,116 KB
testcase_12 TLE -
testcase_13 TLE -
testcase_14 TLE -
testcase_15 AC 47 ms
25,956 KB
testcase_16 AC 23 ms
24,036 KB
testcase_17 TLE -
testcase_18 AC 120 ms
24,032 KB
testcase_19 AC 46 ms
24,032 KB
testcase_20 AC 30 ms
30,596 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 System.Text;
using System.Threading.Tasks;

namespace Code
{
    class Program
    {
        static void Main(string[] args)
        {

            string line = Console.ReadLine();
            string[] values = line.Split(' ');
            int X = int.Parse(values[0]);
            int Y = int.Parse(values[1]);

            int[] rr = new int[Y / 2 + 1];

            int i = 1;
            while (true)
            {
                int t = i * i;
                if (t > Y) break;
                else
                {
                    rr[i++] = t;
                }
            }

            int maxSum = 0;
            for (int k = X; k <= Y; k++)
            {
                int sum = 0;
                for (int s = 0; s * s < k / 2; s++)
                {
                    for (int l = s; l * l <= k; l++)
                    {
                        if (s * s + l * l == k)
                        {
                            if (l * l == k || s == l) sum += 4; 
                            else sum += 8;
                        }
                    }
                }
                if (sum > maxSum) maxSum = sum;
            }

            Console.WriteLine(maxSum);
        }
    }
}
0