結果

問題 No.401 数字の渦巻き
ユーザー ichibanshiboriichibanshibori
提出日時 2016-08-07 23:37:36
言語 F#
(F# 4.0)
結果
AC  
実行時間 343 ms / 2,000 ms
コード長 895 bytes
コンパイル時間 9,551 ms
コンパイル使用メモリ 196,076 KB
実行使用メモリ 35,440 KB
最終ジャッジ日時 2024-11-07 09:59:19
合計ジャッジ時間 21,304 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 342 ms
34,656 KB
testcase_01 AC 338 ms
34,656 KB
testcase_02 AC 334 ms
35,084 KB
testcase_03 AC 335 ms
34,452 KB
testcase_04 AC 337 ms
35,344 KB
testcase_05 AC 339 ms
35,084 KB
testcase_06 AC 339 ms
35,144 KB
testcase_07 AC 337 ms
34,660 KB
testcase_08 AC 337 ms
34,376 KB
testcase_09 AC 338 ms
35,228 KB
testcase_10 AC 337 ms
34,452 KB
testcase_11 AC 341 ms
34,376 KB
testcase_12 AC 341 ms
34,760 KB
testcase_13 AC 335 ms
35,312 KB
testcase_14 AC 334 ms
34,524 KB
testcase_15 AC 336 ms
34,788 KB
testcase_16 AC 341 ms
35,440 KB
testcase_17 AC 340 ms
35,220 KB
testcase_18 AC 338 ms
35,224 KB
testcase_19 AC 339 ms
34,664 KB
testcase_20 AC 342 ms
35,324 KB
testcase_21 AC 342 ms
34,584 KB
testcase_22 AC 343 ms
34,912 KB
testcase_23 AC 336 ms
35,440 KB
testcase_24 AC 341 ms
34,932 KB
testcase_25 AC 338 ms
34,784 KB
testcase_26 AC 339 ms
35,096 KB
testcase_27 AC 336 ms
35,064 KB
testcase_28 AC 335 ms
34,896 KB
testcase_29 AC 339 ms
34,404 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.fsproj を復元しました (679 ms)。
MSBuild のバージョン 17.9.6+a4ecab324 (.NET)
  main -> /home/judge/data/code/bin/Release/net8.0/main.dll
  main -> /home/judge/data/code/bin/Release/net8.0/publish/

ソースコード

diff #

let doIt () =
    let N = stdin.ReadLine () |> int
    let maxN = N * N
    let field = Array2D.zeroCreate<int> N N
    let dxy = [| (1, 0); (0, 1); (-1, 0); (0, -1) |]

    let canMove x y dir =
        let dx, dy = dxy.[dir]
        let nx, ny = x + dx, y + dy
        nx >=0 && nx < N && ny >= 0 && ny < N && field.[ny, nx] = 0
        
    let rec move x y n dir =
        if n > maxN then ()
        else
            field.[y, x] <- n
            let nextDir =
                if canMove x y dir
                then dir
                else (dir + 1) % 4
            let dx, dy = dxy.[nextDir]
            move (x + dx) (y + dy) (n + 1) nextDir

    move 0 0 1 0
    
    let formatLine y =
        seq {for x in 0..(N - 1) -> sprintf "%03d" field.[y, x]} |>
        Seq.reduce (fun s1 s2 -> s1 + " " + s2)

    seq {for y in 0..(N - 1) -> formatLine y} |> Seq.iter (printfn "%s")

doIt ()
0