結果

問題 No.152 貯金箱の消失
ユーザー simansiman
提出日時 2016-03-26 02:03:48
言語 Ruby
(3.3.0)
結果
AC  
実行時間 2,328 ms / 5,000 ms
コード長 342 bytes
コンパイル時間 52 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 12,288 KB
最終ジャッジ日時 2024-10-02 00:51:08
合計ジャッジ時間 9,734 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 93 ms
12,160 KB
testcase_01 AC 91 ms
12,160 KB
testcase_02 AC 88 ms
12,160 KB
testcase_03 AC 89 ms
12,160 KB
testcase_04 AC 108 ms
12,160 KB
testcase_05 AC 119 ms
12,032 KB
testcase_06 AC 131 ms
12,288 KB
testcase_07 AC 421 ms
12,032 KB
testcase_08 AC 2,328 ms
12,288 KB
testcase_09 AC 2,307 ms
12,288 KB
testcase_10 AC 2,003 ms
12,288 KB
testcase_11 AC 1,135 ms
12,288 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

class Yukicoder
  def initialize
    l = gets.to_i
    limit = Math.sqrt(l)
    mod = 1000003

    answer = 0

    1.upto(limit-1) do |n|
      (n+1).upto(limit) do |m|
        if m.gcd(n) == 1 && [n,m].any?(&:even?) && (2*m*n + 2*m*m) <= l/4
          answer += 1
        end
      end
    end

    puts answer % mod
  end
end

Yukicoder.new
0