結果

問題 No.407 鴨等素数間隔列の数え上げ
ユーザー t8m8⛄️t8m8⛄️
提出日時 2017-05-02 23:31:13
言語 Nim
(2.0.2)
結果
AC  
実行時間 142 ms / 1,000 ms
コード長 500 bytes
コンパイル時間 3,223 ms
コンパイル使用メモリ 65,792 KB
実行使用メモリ 27,660 KB
最終ジャッジ日時 2024-06-30 01:11:45
合計ジャッジ時間 5,631 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 13 ms
6,016 KB
testcase_04 AC 1 ms
5,376 KB
testcase_05 AC 138 ms
27,136 KB
testcase_06 AC 67 ms
16,400 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 1 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 2 ms
5,376 KB
testcase_12 AC 2 ms
5,376 KB
testcase_13 AC 2 ms
5,376 KB
testcase_14 AC 2 ms
5,376 KB
testcase_15 AC 2 ms
5,376 KB
testcase_16 AC 1 ms
5,376 KB
testcase_17 AC 2 ms
5,376 KB
testcase_18 AC 1 ms
5,376 KB
testcase_19 AC 14 ms
6,144 KB
testcase_20 AC 40 ms
11,256 KB
testcase_21 AC 17 ms
6,528 KB
testcase_22 AC 14 ms
6,144 KB
testcase_23 AC 26 ms
8,320 KB
testcase_24 AC 39 ms
11,264 KB
testcase_25 AC 66 ms
16,128 KB
testcase_26 AC 65 ms
16,128 KB
testcase_27 AC 10 ms
5,376 KB
testcase_28 AC 28 ms
8,704 KB
testcase_29 AC 63 ms
16,056 KB
testcase_30 AC 11 ms
5,376 KB
testcase_31 AC 54 ms
15,196 KB
testcase_32 AC 63 ms
16,140 KB
testcase_33 AC 141 ms
27,660 KB
testcase_34 AC 142 ms
27,600 KB
testcase_35 AC 126 ms
26,728 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import strutils, sequtils

proc sieve(n: int): seq[int] =
  result = newSeq[int]()
  var isPrime = repeat[bool](true, n+1)
  isPrime[0] = false
  isPrime[1] = false
  for i in 2..n:
    if isPrime[i]:
      result.add(i)
      for j in countUp(i+i, n, i):
        isPrime[j] = false

when isMainModule:
  var
    input = stdin.readline.split.map(parseint)
    (n, m) = (input[0], input[1])
    primes = sieve(m)
    ans: int64 = 0

  for p in primes:
    ans += max(0, m - p*(n-1) + 1)
  
  echo ans
0