結果

問題 No.407 鴨等素数間隔列の数え上げ
ユーザー はむ吉🐹はむ吉🐹
提出日時 2016-07-10 20:25:07
言語 Ruby
(3.3.0)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 287 bytes
コンパイル時間 271 ms
コンパイル使用メモリ 7,680 KB
実行使用メモリ 29,508 KB
最終ジャッジ日時 2024-12-15 14:00:33
合計ジャッジ時間 8,186 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 90 ms
12,544 KB
testcase_01 AC 87 ms
12,288 KB
testcase_02 AC 98 ms
12,288 KB
testcase_03 AC 128 ms
13,312 KB
testcase_04 AC 96 ms
12,416 KB
testcase_05 AC 93 ms
12,288 KB
testcase_06 AC 92 ms
12,288 KB
testcase_07 AC 93 ms
12,288 KB
testcase_08 AC 91 ms
12,416 KB
testcase_09 AC 89 ms
12,288 KB
testcase_10 AC 92 ms
12,288 KB
testcase_11 AC 90 ms
12,288 KB
testcase_12 AC 96 ms
12,416 KB
testcase_13 AC 103 ms
12,288 KB
testcase_14 AC 99 ms
12,544 KB
testcase_15 AC 89 ms
12,160 KB
testcase_16 AC 92 ms
12,416 KB
testcase_17 AC 90 ms
12,288 KB
testcase_18 AC 89 ms
12,288 KB
testcase_19 AC 220 ms
15,616 KB
testcase_20 AC 357 ms
21,068 KB
testcase_21 AC 95 ms
12,288 KB
testcase_22 AC 89 ms
12,416 KB
testcase_23 AC 88 ms
12,416 KB
testcase_24 AC 86 ms
12,288 KB
testcase_25 AC 533 ms
24,356 KB
testcase_26 AC 89 ms
12,416 KB
testcase_27 AC 90 ms
12,160 KB
testcase_28 AC 91 ms
12,288 KB
testcase_29 AC 89 ms
12,416 KB
testcase_30 AC 89 ms
12,544 KB
testcase_31 AC 90 ms
12,416 KB
testcase_32 AC 372 ms
20,992 KB
testcase_33 TLE -
testcase_34 TLE -
testcase_35 AC 535 ms
24,360 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

#!/usr/bin/env ruby

require "prime"


def count_seqs(n, l)
    d_max = l / (n - 1)
    if d_max < 2
        return 0
    end
    answer = Prime.each(d_max).map {|d|
        l - (n - 1) * d + 1
    }.inject(:+)
    return answer
end


n, l = gets.split.map(&:to_i)
puts count_seqs(n, l)
0