結果
問題 | No.2 素因数ゲーム |
ユーザー | むらため |
提出日時 | 2019-10-17 03:12:58 |
言語 | Nim (2.0.2) |
結果 |
AC
|
実行時間 | 2 ms / 5,000 ms |
コード長 | 1,418 bytes |
コンパイル時間 | 4,797 ms |
コンパイル使用メモリ | 76,808 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-06-23 13:09:24 |
合計ジャッジ時間 | 5,843 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | AC | 1 ms
6,940 KB |
testcase_02 | AC | 2 ms
6,940 KB |
testcase_03 | AC | 2 ms
6,940 KB |
testcase_04 | AC | 1 ms
6,940 KB |
testcase_05 | AC | 2 ms
6,940 KB |
testcase_06 | AC | 1 ms
6,944 KB |
testcase_07 | AC | 2 ms
6,944 KB |
testcase_08 | AC | 2 ms
6,940 KB |
testcase_09 | AC | 1 ms
6,940 KB |
testcase_10 | AC | 1 ms
6,940 KB |
testcase_11 | AC | 2 ms
6,944 KB |
testcase_12 | AC | 2 ms
6,944 KB |
testcase_13 | AC | 2 ms
6,944 KB |
testcase_14 | AC | 2 ms
6,940 KB |
testcase_15 | AC | 1 ms
6,940 KB |
testcase_16 | AC | 1 ms
6,944 KB |
testcase_17 | AC | 2 ms
6,944 KB |
testcase_18 | AC | 2 ms
6,944 KB |
testcase_19 | AC | 2 ms
6,944 KB |
testcase_20 | AC | 1 ms
6,944 KB |
testcase_21 | AC | 2 ms
6,940 KB |
testcase_22 | AC | 1 ms
6,940 KB |
testcase_23 | AC | 2 ms
6,940 KB |
testcase_24 | AC | 1 ms
6,944 KB |
testcase_25 | AC | 2 ms
6,944 KB |
testcase_26 | AC | 2 ms
6,940 KB |
testcase_27 | AC | 1 ms
6,944 KB |
testcase_28 | AC | 2 ms
6,940 KB |
testcase_29 | AC | 1 ms
6,944 KB |
testcase_30 | AC | 1 ms
6,940 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, 50) Warning: imported and not used: 'future' [UnusedImport] /home/judge/data/code/Main.nim(1, 26) Warning: imported and not used: 'strscans' [UnusedImport]
ソースコード
import sequtils,strutils,strscans,algorithm,math,future,sets,tables,macros macro unpack*(rhs: seq,cnt: static[int]): auto = let t = genSym(); result = quote do:(let `t` = `rhs`;()) for i in 0..<cnt: result[0][1].add(quote do:`t`[`i`]) template get*():string = stdin.readLine() template times*(n:int,body:untyped): untyped = (for _ in 0..<n: body) template `max=`*(x,y:typed):void = x = max(x,y) template `min=`*(x,y:typed):void = x = min(x,y) proc getIsPrimes(n:int) :seq[bool] = 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 isPrime = getIsPrimes(n) result = @[] for i,p in isPrime: if p : result &= i proc getFactors(N:int):seq[int] = const primes = getPrimes(100_000_000.float.sqrt.int + 1) var n = N result = @[] for p in primes: if p >= n : break while n mod p == 0: result &= p n = n div p if n != 1: result &= n proc coundDuplicate[T](arr:seq[T]): auto = arr.sorted(cmp[T]).foldl( if a[^1].key == b: a[0..<a.len-1] & (b, a[^1].val+1) else: a & (b, 1), @[ (key:arr[0],val:0) ]) let N = get().parseInt() factors = getFactors(N).coundDuplicate().mapIt(it.val) nimsum = factors.foldl(a xor b) echo if nimsum != 0: "Alice" else : "Bob"