結果

問題 No.800 四平方定理
ユーザー yuruhiyayuruhiya
提出日時 2020-07-18 19:46:54
言語 Crystal
(1.11.2)
結果
AC  
実行時間 1,436 ms / 2,000 ms
コード長 299 bytes
コンパイル時間 11,307 ms
コンパイル使用メモリ 295,460 KB
実行使用メモリ 127,760 KB
最終ジャッジ日時 2024-06-30 20:38:33
合計ジャッジ時間 29,354 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 7 ms
6,812 KB
testcase_01 AC 12 ms
6,940 KB
testcase_02 AC 9 ms
6,944 KB
testcase_03 AC 10 ms
6,944 KB
testcase_04 AC 8 ms
6,944 KB
testcase_05 AC 9 ms
6,940 KB
testcase_06 AC 14 ms
6,940 KB
testcase_07 AC 11 ms
6,940 KB
testcase_08 AC 14 ms
6,944 KB
testcase_09 AC 12 ms
6,940 KB
testcase_10 AC 457 ms
76,104 KB
testcase_11 AC 628 ms
101,136 KB
testcase_12 AC 549 ms
97,984 KB
testcase_13 AC 501 ms
77,392 KB
testcase_14 AC 551 ms
97,924 KB
testcase_15 AC 590 ms
101,420 KB
testcase_16 AC 584 ms
97,384 KB
testcase_17 AC 612 ms
103,276 KB
testcase_18 AC 592 ms
98,284 KB
testcase_19 AC 593 ms
101,304 KB
testcase_20 AC 2 ms
6,940 KB
testcase_21 AC 2 ms
6,940 KB
testcase_22 AC 565 ms
97,888 KB
testcase_23 AC 1,332 ms
127,276 KB
testcase_24 AC 1,331 ms
127,760 KB
testcase_25 AC 1,396 ms
124,032 KB
testcase_26 AC 2 ms
6,944 KB
testcase_27 AC 2 ms
6,944 KB
testcase_28 AC 1,365 ms
126,544 KB
testcase_29 AC 1,324 ms
123,360 KB
testcase_30 AC 1,436 ms
127,508 KB
testcase_31 AC 1,257 ms
125,624 KB
testcase_32 AC 1,270 ms
123,856 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, d = read_line.split.map &.to_i
cnt1 = Hash(Int32, Int64).new(0i64)
(1..n).each do |x|
  (1..n).each do |y|
    cnt1[x*x + y*y] += 1
  end
end

cnt2 = Hash(Int32, Int64).new(0i64)
(1..n).each do |w|
  (1..n).each do |z|
    cnt2[w*w - z*z + d] += 1
  end
end

puts cnt1.sum { |k, v| cnt2[k] * v }
0