結果

問題 No.781 円周上の格子点の数え上げ
ユーザー simansiman
提出日時 2021-07-01 19:57:26
言語 Ruby
(3.3.0)
結果
WA  
実行時間 -
コード長 365 bytes
コンパイル時間 149 ms
コンパイル使用メモリ 7,680 KB
実行使用メモリ 32,540 KB
最終ジャッジ日時 2024-06-28 09:27:50
合計ジャッジ時間 8,612 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 91 ms
12,032 KB
testcase_01 AC 90 ms
12,032 KB
testcase_02 AC 89 ms
12,160 KB
testcase_03 AC 88 ms
12,032 KB
testcase_04 AC 89 ms
11,904 KB
testcase_05 AC 89 ms
12,032 KB
testcase_06 AC 96 ms
12,160 KB
testcase_07 AC 104 ms
12,160 KB
testcase_08 AC 1,216 ms
11,904 KB
testcase_09 AC 1,219 ms
11,904 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 92 ms
11,776 KB
testcase_17 WA -
testcase_18 AC 762 ms
12,160 KB
testcase_19 AC 778 ms
12,160 KB
testcase_20 AC 783 ms
12,032 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

X, Y = gets.split.map(&:to_i)
S = Math.sqrt(X).ceil
L = Math.sqrt(Y).floor

counter = Hash.new(0)

S.upto(L) do |x|
  counter[x ** 2] += 1
end

S.times do |y|
  dy = y ** 2

  S.times do |x|
    dx = x ** 2
    v = dy + dx

    next if v < X
    next if Y < v

    counter[v] += 1
  end
end

if counter.values.empty?
  puts 0
else
  puts counter.values.max * 4
end
0