結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 90 ms
17,536 KB
testcase_01 AC 83 ms
101,652 KB
testcase_02 AC 85 ms
19,108 KB
testcase_03 AC 86 ms
12,288 KB
testcase_04 AC 84 ms
12,416 KB
testcase_05 AC 80 ms
12,160 KB
testcase_06 AC 89 ms
12,032 KB
testcase_07 AC 96 ms
12,160 KB
testcase_08 AC 1,579 ms
12,160 KB
testcase_09 AC 1,582 ms
12,160 KB
testcase_10 AC 87 ms
12,160 KB
testcase_11 AC 95 ms
12,416 KB
testcase_12 TLE -
testcase_13 TLE -
testcase_14 AC 187 ms
13,184 KB
testcase_15 AC 87 ms
12,160 KB
testcase_16 AC 88 ms
12,160 KB
testcase_17 TLE -
testcase_18 AC 999 ms
12,160 KB
testcase_19 AC 1,000 ms
12,160 KB
testcase_20 AC 1,004 ms
101,796 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

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

h = Hash.new(0)

ans = 0

for y in 1..Math.sqrt(Y).floor do
    for x in 0..Math.sqrt(Y).floor 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