結果

問題 No.36 素数が嫌い!
ユーザー むらためむらため
提出日時 2017-08-13 10:19:54
言語 Nim
(2.0.2)
結果
WA  
実行時間 -
コード長 743 bytes
コンパイル時間 2,902 ms
コンパイル使用メモリ 69,796 KB
実行使用メモリ 27,264 KB
最終ジャッジ日時 2024-06-30 02:31:58
合計ジャッジ時間 4,631 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
15,616 KB
testcase_01 AC 58 ms
18,688 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 1 ms
5,376 KB
testcase_11 AC 30 ms
11,392 KB
testcase_12 AC 86 ms
27,264 KB
testcase_13 WA -
testcase_14 AC 49 ms
17,024 KB
testcase_15 AC 1 ms
5,376 KB
testcase_16 AC 1 ms
5,376 KB
testcase_17 AC 1 ms
5,376 KB
testcase_18 AC 1 ms
5,376 KB
testcase_19 AC 34 ms
14,976 KB
testcase_20 AC 82 ms
27,264 KB
testcase_21 AC 58 ms
18,560 KB
testcase_22 AC 59 ms
18,680 KB
testcase_23 AC 35 ms
15,744 KB
testcase_24 AC 40 ms
16,224 KB
testcase_25 AC 40 ms
16,120 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
/home/judge/data/code/Main.nim(1, 50) Warning: Use the new 'sugar' module instead; future is deprecated [Deprecated]
/home/judge/data/code/Main.nim(1, 57) Warning: imported and not used: 'macros' [UnusedImport]
/home/judge/data/code/Main.nim(1, 50) Warning: imported and not used: 'future' [UnusedImport]
/home/judge/data/code/Main.nim(1, 26) Warning: imported and not used: 'strscans' [UnusedImport]
/home/judge/data/code/Main.nim(1, 35) Warning: imported and not used: 'algorithm' [UnusedImport]

ソースコード

diff #

import sequtils,strutils,strscans,algorithm,math,future,macros
template get*():string = stdin.readLine()

proc getIsPrimes(n:int) :seq[bool] = # [0...n]
  result = newSeqWith(n+1,true)
  result[0] = false
  result[1] = false
  for i in 2..n.float.sqrt.int :
    if not result[i]: continue
    for j in countup(i*2,n,i):
      result[j] = false

proc getPrimes(n:int):seq[int] = # [2,3,5,...n]
  let isPrimes = getIsPrimes(n)
  result = @[]
  for i,p in isPrimes:
    if p : result &= i

proc getIsPrime(n:int) : bool = # O(N/2)
  let primes = getPrimes(n.float.sqrt.int + 1)
  for p in primes:
    if n mod p == 0 and n != p:
      return false
  return true

let N = get().parseInt()
if N == 1 or getIsPrime(N):
  echo "NO"
else:
  echo "YES"
0