結果

問題 No.800 四平方定理
ユーザー tatt61880tatt61880
提出日時 2019-03-17 23:41:15
言語 Kuin
(KuinC++ v.2021.9.17)
結果
AC  
実行時間 192 ms / 2,000 ms
コード長 499 bytes
コンパイル時間 2,196 ms
コンパイル使用メモリ 149,016 KB
実行使用メモリ 128,768 KB
最終ジャッジ日時 2024-09-16 09:55:01
合計ジャッジ時間 7,372 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 87 ms
128,768 KB
testcase_01 AC 89 ms
128,768 KB
testcase_02 AC 86 ms
128,768 KB
testcase_03 AC 86 ms
128,640 KB
testcase_04 AC 88 ms
128,768 KB
testcase_05 AC 87 ms
128,768 KB
testcase_06 AC 85 ms
128,768 KB
testcase_07 AC 85 ms
128,640 KB
testcase_08 AC 86 ms
128,768 KB
testcase_09 AC 85 ms
128,768 KB
testcase_10 AC 126 ms
128,768 KB
testcase_11 AC 133 ms
128,640 KB
testcase_12 AC 131 ms
128,768 KB
testcase_13 AC 127 ms
128,640 KB
testcase_14 AC 128 ms
128,768 KB
testcase_15 AC 133 ms
128,768 KB
testcase_16 AC 129 ms
128,640 KB
testcase_17 AC 131 ms
128,768 KB
testcase_18 AC 138 ms
128,640 KB
testcase_19 AC 137 ms
128,640 KB
testcase_20 AC 87 ms
128,768 KB
testcase_21 AC 88 ms
128,768 KB
testcase_22 AC 138 ms
128,768 KB
testcase_23 AC 192 ms
128,640 KB
testcase_24 AC 184 ms
128,640 KB
testcase_25 AC 192 ms
128,640 KB
testcase_26 AC 87 ms
128,640 KB
testcase_27 AC 87 ms
128,640 KB
testcase_28 AC 183 ms
128,768 KB
testcase_29 AC 185 ms
128,640 KB
testcase_30 AC 178 ms
128,640 KB
testcase_31 AC 171 ms
128,768 KB
testcase_32 AC 180 ms
128,768 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

func main()
	var _: [][]char :: cui@input().split(" ")
	var N: int :: _[0].toInt(&)
	var D: int :: _[1].toInt(&)
	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