結果

問題 No.781 円周上の格子点の数え上げ
ユーザー tsuchinagatsuchinaga
提出日時 2019-04-03 12:36:03
言語 Go
(1.22.1)
結果
AC  
実行時間 1,447 ms / 2,000 ms
コード長 542 bytes
コンパイル時間 15,489 ms
コンパイル使用メモリ 235,768 KB
実行使用メモリ 156,820 KB
最終ジャッジ日時 2024-12-17 22:24:43
合計ジャッジ時間 18,828 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,816 KB
testcase_01 AC 1 ms
6,816 KB
testcase_02 AC 1 ms
6,820 KB
testcase_03 AC 1 ms
6,816 KB
testcase_04 AC 1 ms
6,816 KB
testcase_05 AC 1 ms
6,816 KB
testcase_06 AC 1 ms
6,820 KB
testcase_07 AC 1 ms
6,820 KB
testcase_08 AC 1 ms
6,816 KB
testcase_09 AC 1 ms
6,820 KB
testcase_10 AC 2 ms
6,820 KB
testcase_11 AC 4 ms
6,816 KB
testcase_12 AC 662 ms
80,276 KB
testcase_13 AC 1,447 ms
156,820 KB
testcase_14 AC 7 ms
6,816 KB
testcase_15 AC 1 ms
6,816 KB
testcase_16 AC 2 ms
6,820 KB
testcase_17 AC 719 ms
81,044 KB
testcase_18 AC 1 ms
6,820 KB
testcase_19 AC 1 ms
6,820 KB
testcase_20 AC 2 ms
6,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package main

import (
	"fmt"
	"math"
)

func main() {
	var min, max int
	_, _ = fmt.Scan(&min, &max)

	ans := 0
	rMap := make(map[int]int)
	minX, maxX := 1, int(math.Sqrt(float64(max)))
	for x := minX; x <= maxX; x++ {
		minY, maxY := 0, int(math.Sqrt(float64(max)-float64(x*x)))
		if min-x*x > 0 {
			minY = int(math.Ceil(math.Sqrt(float64(min) - float64(x*x))))
		}
		// fmt.Println(x, minY, maxY)
		for y := minY; y <= maxY; y++ {
			rMap[x*x+y*y]++
			if ans < rMap[x*x+y*y] {
				ans = rMap[x*x+y*y]
			}
		}
	}
	fmt.Println(ans * 4)
}
0