結果
問題 | No.781 円周上の格子点の数え上げ |
ユーザー | TANIGUCHI Kousuke |
提出日時 | 2019-12-17 18:37:27 |
言語 | Ruby (3.3.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 382 bytes |
コンパイル時間 | 217 ms |
コンパイル使用メモリ | 7,552 KB |
実行使用メモリ | 96,640 KB |
最終ジャッジ日時 | 2024-07-04 03:44:10 |
合計ジャッジ時間 | 7,708 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 89 ms
19,228 KB |
testcase_01 | AC | 92 ms
12,032 KB |
testcase_02 | AC | 88 ms
12,160 KB |
testcase_03 | AC | 90 ms
12,032 KB |
testcase_04 | AC | 93 ms
12,288 KB |
testcase_05 | AC | 89 ms
12,288 KB |
testcase_06 | AC | 93 ms
12,160 KB |
testcase_07 | AC | 89 ms
12,288 KB |
testcase_08 | AC | 93 ms
12,032 KB |
testcase_09 | AC | 92 ms
12,160 KB |
testcase_10 | AC | 93 ms
12,288 KB |
testcase_11 | AC | 108 ms
12,416 KB |
testcase_12 | TLE | - |
testcase_13 | TLE | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
コンパイルメッセージ
Syntax OK
ソースコード
def max(a,b); a > b ? a : b; end X, Y = gets.split.map(&:to_i) R = Integer.sqrt(Y) C = Hash.new(0) fmax = 0 (1 .. R).each do |x| x2 = x ** 2 ymin = Integer.sqrt(max(0, X - x2)) ymax = Integer.sqrt(Y - x2) + 1 (ymin ... ymax).each do |y| r2 = x2 + y ** 2 unless r2 < X || r2 > Y C[r2] += 1 fmax = max(fmax, C[r2]) end end end puts fmax * 4