結果

問題 No.401 数字の渦巻き
ユーザー kuuso1kuuso1
提出日時 2016-08-25 23:29:33
言語 F#
(F# 4.0)
結果
RE  
実行時間 -
コード長 970 bytes
コンパイル時間 13,922 ms
コンパイル使用メモリ 202,216 KB
実行使用メモリ 36,736 KB
最終ジャッジ日時 2024-11-08 03:17:24
合計ジャッジ時間 25,865 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 RE -
testcase_01 AC 351 ms
35,140 KB
testcase_02 AC 348 ms
35,304 KB
testcase_03 AC 349 ms
34,492 KB
testcase_04 AC 348 ms
35,116 KB
testcase_05 AC 349 ms
34,832 KB
testcase_06 AC 351 ms
35,160 KB
testcase_07 AC 349 ms
35,184 KB
testcase_08 AC 349 ms
35,060 KB
testcase_09 AC 349 ms
35,168 KB
testcase_10 AC 354 ms
35,068 KB
testcase_11 AC 349 ms
35,172 KB
testcase_12 AC 351 ms
35,176 KB
testcase_13 AC 350 ms
35,308 KB
testcase_14 AC 350 ms
35,196 KB
testcase_15 AC 348 ms
35,220 KB
testcase_16 AC 348 ms
35,072 KB
testcase_17 AC 351 ms
35,448 KB
testcase_18 AC 350 ms
35,240 KB
testcase_19 AC 349 ms
35,312 KB
testcase_20 AC 350 ms
35,324 KB
testcase_21 AC 349 ms
35,376 KB
testcase_22 AC 353 ms
35,368 KB
testcase_23 AC 351 ms
35,092 KB
testcase_24 AC 351 ms
35,228 KB
testcase_25 AC 352 ms
35,256 KB
testcase_26 AC 352 ms
35,284 KB
testcase_27 AC 351 ms
35,248 KB
testcase_28 AC 354 ms
35,188 KB
testcase_29 AC 350 ms
35,432 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.fsproj を復元しました (425 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 #

open System

let InRange ll ul i j = ( ll <= i ) && ( i < ul ) && ( ll <= j ) && ( j < ul )


type Sol() =
    member this.Solve() = 
        
        let N = stdin.ReadLine() |> int
        
        let dx = [1;0;-1;0]
        let dy = [0;1;0;-1]
        
        let rec f i j t n (a:int [] [] ) =
            // printfn "%d %d %d %d" i j t n
            if a.[i].[j] <> 0 then () else 
                a.[i].[j] <- n
                let ny = i + dy.[t]
                let nx = j + dx.[t]
                if (InRange 0 N ny nx) && (a.[ny].[nx] = 0) then f ny nx t (n+1) a else f (i + dy.[(t+1)%4]) (j + dx.[(t+1)%4]) ((t+1)%4) (n+1) a
                    
        
        let A = Array.zeroCreate<int[]> N
        for i = 0 to (N-1) do A.[i] <- Array.zeroCreate<int> N
        
        f 0 0 0 1 A
        
        for i = 0 to (N-1) do  String.Join(" ", (A.[i] |> Array.map (sprintf "%03d"))) |> printfn "%s"
        
        ()
let mySol = new Sol()
mySol.Solve()
0