結果

問題 No.800 四平方定理
ユーザー horiesinitihoriesiniti
提出日時 2023-02-04 19:46:56
言語 Ruby
(3.3.0)
結果
TLE  
実行時間 -
コード長 386 bytes
コンパイル時間 223 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 131,936 KB
最終ジャッジ日時 2024-07-03 16:20:37
合計ジャッジ時間 28,062 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 97 ms
20,892 KB
testcase_01 AC 120 ms
15,616 KB
testcase_02 AC 107 ms
14,464 KB
testcase_03 AC 111 ms
15,616 KB
testcase_04 AC 105 ms
14,080 KB
testcase_05 AC 111 ms
14,208 KB
testcase_06 AC 136 ms
16,000 KB
testcase_07 AC 122 ms
15,744 KB
testcase_08 AC 128 ms
16,000 KB
testcase_09 AC 125 ms
15,744 KB
testcase_10 AC 1,784 ms
84,636 KB
testcase_11 TLE -
testcase_12 AC 1,969 ms
109,316 KB
testcase_13 AC 1,846 ms
84,464 KB
testcase_14 AC 1,980 ms
109,232 KB
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 AC 78 ms
12,288 KB
testcase_21 AC 82 ms
12,160 KB
testcase_22 TLE -
testcase_23 TLE -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

n,d=gets.split(" ").map{|e| e.to_i}
hs={}
hs2={}
1.upto(n){|x|
	x.upto(n){|y|
		t=x**2+y**2
		hs[t]=0 if hs.member?(t)==false
		hs[t]+=(x==y)?(1):(2)
		t2=d+(x+y)*(x-y)
		hs2[t2]=0 if hs2.member?(t2)==false
		hs2[t2]+=1
		next if x==y
		t2=d+(y-x)*(x+y)
		hs2[t2]=0 if hs2.member?(t2)==false
		hs2[t2]+=1
	}
}
ans=0
hs.each{|k,v|
	next if hs2.member?(k)==false
	ans+=v*hs2[k]
}
puts ans
0