結果

問題 No.781 円周上の格子点の数え上げ
ユーザー kl_tomasonkl_tomason
提出日時 2019-01-12 08:01:12
言語 Ruby
(3.3.0)
結果
WA  
実行時間 -
コード長 277 bytes
コンパイル時間 163 ms
コンパイル使用メモリ 7,296 KB
実行使用メモリ 101,920 KB
最終ジャッジ日時 2024-12-16 03:36:39
合計ジャッジ時間 21,275 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 80 ms
17,408 KB
testcase_01 WA -
testcase_02 AC 85 ms
17,408 KB
testcase_03 AC 80 ms
101,652 KB
testcase_04 WA -
testcase_05 AC 85 ms
12,288 KB
testcase_06 AC 95 ms
12,032 KB
testcase_07 AC 110 ms
12,032 KB
testcase_08 TLE -
testcase_09 TLE -
testcase_10 AC 89 ms
12,288 KB
testcase_11 AC 99 ms
12,672 KB
testcase_12 TLE -
testcase_13 TLE -
testcase_14 AC 236 ms
13,312 KB
testcase_15 WA -
testcase_16 AC 90 ms
12,160 KB
testcase_17 TLE -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

X, Y = gets.split.map &:to_i

h = Hash.new(0)

ans = 0

for y in 0..Math.sqrt(Y) do
    for x in 0..(Math.sqrt(Y) - 1) do
        rr = y**2 + x**2
        if X <= rr && rr <= Y then
            h[rr] += 1
            ans = [ans, h[rr]].max 
        end
    end
end

puts ans*4
0