結果

問題 No.800 四平方定理
ユーザー horiesinitihoriesiniti
提出日時 2023-02-04 20:24:11
言語 Ruby
(3.3.0)
結果
TLE  
実行時間 -
コード長 291 bytes
コンパイル時間 259 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 168,704 KB
最終ジャッジ日時 2024-07-03 16:54:16
合計ジャッジ時間 53,758 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,001 ms
168,576 KB
testcase_01 AC 1,012 ms
168,320 KB
testcase_02 AC 1,003 ms
168,320 KB
testcase_03 AC 1,007 ms
168,448 KB
testcase_04 AC 1,008 ms
168,448 KB
testcase_05 AC 1,004 ms
168,704 KB
testcase_06 AC 1,012 ms
168,576 KB
testcase_07 AC 1,007 ms
168,576 KB
testcase_08 AC 1,013 ms
168,448 KB
testcase_09 AC 1,005 ms
168,320 KB
testcase_10 AC 1,596 ms
168,320 KB
testcase_11 AC 1,674 ms
168,576 KB
testcase_12 AC 1,664 ms
168,704 KB
testcase_13 AC 1,659 ms
168,448 KB
testcase_14 AC 1,702 ms
168,320 KB
testcase_15 AC 1,671 ms
168,448 KB
testcase_16 AC 1,679 ms
168,576 KB
testcase_17 AC 1,692 ms
168,320 KB
testcase_18 AC 1,692 ms
168,576 KB
testcase_19 AC 1,703 ms
168,576 KB
testcase_20 AC 992 ms
168,704 KB
testcase_21 AC 991 ms
168,448 KB
testcase_22 AC 1,686 ms
168,320 KB
testcase_23 TLE -
testcase_24 TLE -
testcase_25 TLE -
testcase_26 AC 996 ms
168,448 KB
testcase_27 AC 998 ms
168,448 KB
testcase_28 TLE -
testcase_29 TLE -
testcase_30 TLE -
testcase_31 TLE -
testcase_32 TLE -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

n,d=gets.split(" ").map{|e| e.to_i}
hs=Array.new(10000000,0)
hs2=Array.new(10000000,0)
1.upto(n){|x|
	x.upto(n){|y|
		t=x**2+y**2
		hs[t]+=(x==y)?(1):(2)
		t2=d+(x+y)*(x-y)
		hs2[t2]+=1
		next if x==y
		t2=d+(y-x)*(x+y)
		hs2[t2]+=1
	}
}
ans=0
hs.size.times{|i|
	ans+=hs[i]*hs2[i]
}
puts ans
0