結果

問題 No.781 円周上の格子点の数え上げ
ユーザー tatt61880tatt61880
提出日時 2021-03-30 02:37:13
言語 Kuin
(KuinC++ v.2021.9.17)
結果
AC  
実行時間 176 ms / 2,000 ms
コード長 549 bytes
コンパイル時間 2,059 ms
コンパイル使用メモリ 148,340 KB
実行使用メモリ 160,128 KB
最終ジャッジ日時 2024-09-16 12:18:43
合計ジャッジ時間 3,849 ms
ジャッジサーバーID
(参考情報)
judge6 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 1 ms
5,376 KB
testcase_04 AC 1 ms
5,376 KB
testcase_05 AC 1 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 145 ms
82,176 KB
testcase_09 AC 135 ms
82,048 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 2 ms
5,376 KB
testcase_12 AC 157 ms
124,672 KB
testcase_13 AC 176 ms
160,128 KB
testcase_14 AC 7 ms
9,344 KB
testcase_15 AC 2 ms
5,376 KB
testcase_16 AC 2 ms
5,376 KB
testcase_17 AC 87 ms
96,640 KB
testcase_18 AC 71 ms
50,432 KB
testcase_19 AC 74 ms
51,792 KB
testcase_20 AC 72 ms
51,712 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

func main()
	var x: int :: cui@inputInt()
	var y: int :: cui@inputInt()
	var max: int :: y
	var a: []int :: #[max + 1]int
	var square: []int :: #[(y $ float ^ 0.51) $ int + 1]int
	var map: dict<int, bool> :: #dict<int, bool>
	for i(0, ^square - 1)
		do square[i] :: i ^ 2
		do map.add(square[i], true)
	end for
	for i(0, ^square - 1)
		for j(1, ^square - 1)
			var sum: int :: square[i] + square[j]
			if(sum <= max)
				do a[sum] :+ 1
			end if
		end for
	end for
	
	var ans: int :: a.sub(x, y - x + 1).max() * 4
	do cui@print("\{ans}\n")
end func
0