結果

問題 No.781 円周上の格子点の数え上げ
ユーザー ixTL255ixTL255
提出日時 2019-02-06 02:06:45
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 373 ms / 2,000 ms
コード長 517 bytes
コンパイル時間 2,522 ms
コンパイル使用メモリ 106,752 KB
実行使用メモリ 96,512 KB
最終ジャッジ日時 2024-06-10 23:21:24
合計ジャッジ時間 5,876 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 22 ms
18,944 KB
testcase_01 AC 22 ms
18,944 KB
testcase_02 AC 24 ms
19,072 KB
testcase_03 AC 22 ms
18,944 KB
testcase_04 AC 25 ms
18,944 KB
testcase_05 AC 23 ms
19,072 KB
testcase_06 AC 23 ms
19,104 KB
testcase_07 AC 24 ms
19,072 KB
testcase_08 AC 319 ms
96,256 KB
testcase_09 AC 325 ms
96,512 KB
testcase_10 AC 24 ms
18,928 KB
testcase_11 AC 25 ms
18,980 KB
testcase_12 AC 360 ms
96,384 KB
testcase_13 AC 373 ms
96,256 KB
testcase_14 AC 33 ms
22,528 KB
testcase_15 AC 23 ms
19,112 KB
testcase_16 AC 23 ms
18,980 KB
testcase_17 AC 213 ms
64,512 KB
testcase_18 AC 179 ms
64,512 KB
testcase_19 AC 183 ms
65,792 KB
testcase_20 AC 193 ms
65,792 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;

public class Yuki781
{
	public static void Main()
	{
		var ab = Console.ReadLine().Split(' ').Select(x => int.Parse(x)).ToList();
		var cnt = new long[ab[1] + 1];
		var r = (int)Math.Sqrt(ab[1]);
		for (int i = 0; i <= r; ++i)
		{
			for (int j = 1; j <= r; ++j)
			{
				var d = i * i + j* j;
				if(d <= ab[1]) cnt[d]++;
			}
		}
		long max = 0;
		for(int i = ab[0]; i <= ab[1]; ++i) max = Math.Max(max, cnt[i]);
		Console.WriteLine(max * 4);
	}
}
0