結果

問題 No.800 四平方定理
ユーザー tatt61880tatt61880
提出日時 2020-04-25 15:37:33
言語 Kuin
(KuinC++ v.2021.9.17)
結果
AC  
実行時間 128 ms / 2,000 ms
コード長 459 bytes
コンパイル時間 1,980 ms
コンパイル使用メモリ 147,140 KB
実行使用メモリ 128,976 KB
最終ジャッジ日時 2024-09-16 10:52:56
合計ジャッジ時間 5,449 ms
ジャッジサーバーID
(参考情報)
judge6 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
128,816 KB
testcase_01 AC 36 ms
128,840 KB
testcase_02 AC 36 ms
128,880 KB
testcase_03 AC 35 ms
128,836 KB
testcase_04 AC 36 ms
128,740 KB
testcase_05 AC 36 ms
128,840 KB
testcase_06 AC 35 ms
128,840 KB
testcase_07 AC 36 ms
128,804 KB
testcase_08 AC 37 ms
128,828 KB
testcase_09 AC 35 ms
128,732 KB
testcase_10 AC 72 ms
128,860 KB
testcase_11 AC 74 ms
128,816 KB
testcase_12 AC 82 ms
128,760 KB
testcase_13 AC 70 ms
128,912 KB
testcase_14 AC 74 ms
128,800 KB
testcase_15 AC 72 ms
128,848 KB
testcase_16 AC 74 ms
128,904 KB
testcase_17 AC 70 ms
128,684 KB
testcase_18 AC 82 ms
128,820 KB
testcase_19 AC 79 ms
128,736 KB
testcase_20 AC 34 ms
128,976 KB
testcase_21 AC 33 ms
128,880 KB
testcase_22 AC 78 ms
128,812 KB
testcase_23 AC 128 ms
128,824 KB
testcase_24 AC 119 ms
128,888 KB
testcase_25 AC 124 ms
128,748 KB
testcase_26 AC 33 ms
128,816 KB
testcase_27 AC 34 ms
128,816 KB
testcase_28 AC 117 ms
128,828 KB
testcase_29 AC 124 ms
128,816 KB
testcase_30 AC 111 ms
128,856 KB
testcase_31 AC 106 ms
128,860 KB
testcase_32 AC 123 ms
128,896 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

func main()
	var n: int :: cui@inputInt()
	var d: int :: cui@inputInt()
	var xy: []int :: #[2 * 2000 ^ 2 + 1]int
	var zwd: []int :: #[2 * 2000 ^ 2 + 1]int
	for x(1, n)
		for y(1, n)
			do xy[x ^ 2 + y ^ 2] :+ 1
		end for
	end for
	for z(1, n)
		for w(1, n)
			var v: int :: w ^ 2 - z ^ 2 + d
			if(v > 0)
				do zwd[v] :+ 1
			end if
		end for
	end for
	var ans: int
	for i(1, 2 * n ^ 2)
		do ans :+ xy[i] * zwd[i]
	end for
	do cui@print("\{ans}\n")
end func
0