結果

問題 No.3 ビットすごろく
ユーザー 34056915823405691582
提出日時 2017-01-21 14:47:54
言語 Haskell
(9.8.2)
結果
AC  
実行時間 4,471 ms / 5,000 ms
コード長 646 bytes
コンパイル時間 8,102 ms
コンパイル使用メモリ 171,136 KB
実行使用メモリ 13,948 KB
最終ジャッジ日時 2024-07-01 08:21:57
合計ジャッジ時間 62,975 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 224 ms
10,928 KB
testcase_04 AC 21 ms
8,704 KB
testcase_05 AC 1,193 ms
13,288 KB
testcase_06 AC 281 ms
11,880 KB
testcase_07 AC 90 ms
8,960 KB
testcase_08 AC 739 ms
13,004 KB
testcase_09 AC 2,057 ms
13,556 KB
testcase_10 AC 2,993 ms
13,948 KB
testcase_11 AC 1,693 ms
12,604 KB
testcase_12 AC 1,125 ms
13,228 KB
testcase_13 AC 163 ms
9,764 KB
testcase_14 AC 2,700 ms
11,332 KB
testcase_15 AC 4,333 ms
13,676 KB
testcase_16 AC 3,723 ms
13,672 KB
testcase_17 AC 4,209 ms
13,536 KB
testcase_18 AC 117 ms
9,628 KB
testcase_19 AC 4,465 ms
13,564 KB
testcase_20 AC 12 ms
5,888 KB
testcase_21 AC 2 ms
5,376 KB
testcase_22 AC 2,821 ms
11,468 KB
testcase_23 AC 4,471 ms
13,688 KB
testcase_24 AC 4,432 ms
13,564 KB
testcase_25 AC 4,361 ms
13,760 KB
testcase_26 AC 2 ms
5,376 KB
testcase_27 AC 194 ms
11,780 KB
testcase_28 AC 3,622 ms
13,472 KB
testcase_29 AC 1,783 ms
13,248 KB
testcase_30 AC 3 ms
5,376 KB
testcase_31 AC 3 ms
5,376 KB
testcase_32 AC 1,479 ms
12,568 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Loaded package environment from /home/judge/.ghc/x86_64-linux-9.8.2/environments/default
[1 of 2] Compiling Main             ( Main.hs, Main.o )
[2 of 2] Linking a.out

ソースコード

diff #

import Data.Array

numOfOne 0 = 0
numOfOne n = mod n 2 + numOfOne (div n 2)
prev i = i - numOfOne i
next i = i + numOfOne i

type Board = Array Int Int
update :: Board -> Board
update b = foldl update' b [first..last] where
  (first,last) = bounds b
  update' b' i =
    let
      b'' = if prev i >= first && b!i+1 < b'!prev i then b'//[(prev i,b!i+1)] else b'
      b''' = if next i <= last && b!i+1 < b''!next i then b''//[(next i,b!i+1)] else b''
    in
      b'''

main = do
  n <- fmap read getLine
  let
    b = (listArray (1,n) $ repeat (n+1))//[(1,1)]
    b' = (iterate update b)!!(n-1)
  putStrLn . show $ if b'!n < n+1 then b'!n else -1
0