結果
問題 | No.36 素数が嫌い! |
ユーザー | むらため |
提出日時 | 2017-08-13 10:33:01 |
言語 | Nim (2.0.2) |
結果 |
AC
|
実行時間 | 111 ms / 5,000 ms |
コード長 | 811 bytes |
コンパイル時間 | 3,332 ms |
コンパイル使用メモリ | 68,096 KB |
実行使用メモリ | 27,264 KB |
最終ジャッジ日時 | 2024-06-30 02:32:07 |
合計ジャッジ時間 | 5,192 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 44 ms
15,616 KB |
testcase_01 | AC | 75 ms
18,560 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 1 ms
5,376 KB |
testcase_04 | AC | 1 ms
5,376 KB |
testcase_05 | AC | 1 ms
5,376 KB |
testcase_06 | AC | 2 ms
5,376 KB |
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 | 33 ms
11,392 KB |
testcase_12 | AC | 101 ms
27,136 KB |
testcase_13 | AC | 111 ms
27,136 KB |
testcase_14 | AC | 55 ms
17,024 KB |
testcase_15 | AC | 1 ms
5,376 KB |
testcase_16 | AC | 2 ms
5,376 KB |
testcase_17 | AC | 1 ms
5,376 KB |
testcase_18 | AC | 2 ms
5,376 KB |
testcase_19 | AC | 37 ms
15,104 KB |
testcase_20 | AC | 95 ms
27,264 KB |
testcase_21 | AC | 71 ms
18,432 KB |
testcase_22 | AC | 71 ms
18,688 KB |
testcase_23 | AC | 42 ms
15,744 KB |
testcase_24 | AC | 51 ms
16,256 KB |
testcase_25 | AC | 48 ms
16,128 KB |
testcase_26 | AC | 61 ms
17,024 KB |
testcase_27 | AC | 88 ms
19,328 KB |
testcase_28 | AC | 59 ms
16,896 KB |
testcase_29 | AC | 101 ms
27,008 KB |
コンパイルメッセージ
/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]
ソースコード
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 let N = get().parseInt() primes = getPrimes(N.float.sqrt.int + 1) if N == 1 : echo "NO" quit() for p1 in primes: if N mod p1 != 0: continue let factor = N div p1 for p2 in primes: if factor mod p2 != 0: continue if factor == p2 : echo "NO" else: echo "YES" quit() echo "NO" quit() echo "NO"