結果

問題 No.781 円周上の格子点の数え上げ
ユーザー maimai
提出日時 2019-01-11 22:16:03
言語 Ruby
(3.3.0)
結果
TLE  
実行時間 -
コード長 261 bytes
コンパイル時間 142 ms
コンパイル使用メモリ 7,680 KB
実行使用メモリ 24,832 KB
最終ジャッジ日時 2024-11-30 08:19:25
合計ジャッジ時間 16,242 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 76 ms
19,108 KB
testcase_01 AC 78 ms
24,320 KB
testcase_02 AC 77 ms
17,408 KB
testcase_03 AC 80 ms
24,576 KB
testcase_04 AC 82 ms
17,536 KB
testcase_05 AC 81 ms
24,064 KB
testcase_06 AC 76 ms
17,664 KB
testcase_07 AC 78 ms
12,160 KB
testcase_08 AC 78 ms
12,160 KB
testcase_09 AC 78 ms
12,160 KB
testcase_10 AC 441 ms
12,160 KB
testcase_11 AC 1,437 ms
12,416 KB
testcase_12 TLE -
testcase_13 TLE -
testcase_14 TLE -
testcase_15 AC 111 ms
12,160 KB
testcase_16 AC 78 ms
12,032 KB
testcase_17 TLE -
testcase_18 AC 91 ms
12,160 KB
testcase_19 AC 81 ms
12,288 KB
testcase_20 AC 79 ms
24,832 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

def ascan; gets.split.map(&:to_i); end

X, Y = ascan

def calc(r)
    ans = 0
    0.upto((Math.sqrt(r)-1e-8).to_i) do |x|
        yy = r - x*x
        ans += 1 if Math.sqrt(yy).to_i**2 == yy
    end
    ans*4
end

p (X..Y).map{|x|calc(x)}.reduce{|s,e|[s,e].max}
0