結果

問題 No.411 昇順昇順ソート
ユーザー kuuso1kuuso1
提出日時 2016-08-19 09:47:33
言語 F#
(F# 4.0)
結果
AC  
実行時間 342 ms / 2,000 ms
コード長 338 bytes
コンパイル時間 6,931 ms
コンパイル使用メモリ 205,300 KB
実行使用メモリ 34,736 KB
最終ジャッジ日時 2024-11-07 18:18:50
合計ジャッジ時間 19,800 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 339 ms
34,608 KB
testcase_01 AC 342 ms
34,608 KB
testcase_02 AC 338 ms
34,472 KB
testcase_03 AC 335 ms
34,180 KB
testcase_04 AC 336 ms
34,084 KB
testcase_05 AC 338 ms
34,104 KB
testcase_06 AC 336 ms
34,736 KB
testcase_07 AC 336 ms
34,212 KB
testcase_08 AC 334 ms
34,084 KB
testcase_09 AC 334 ms
34,604 KB
testcase_10 AC 333 ms
34,616 KB
testcase_11 AC 334 ms
34,604 KB
testcase_12 AC 336 ms
34,736 KB
testcase_13 AC 336 ms
34,084 KB
testcase_14 AC 339 ms
34,480 KB
testcase_15 AC 337 ms
34,352 KB
testcase_16 AC 337 ms
34,476 KB
testcase_17 AC 336 ms
34,188 KB
testcase_18 AC 339 ms
34,480 KB
testcase_19 AC 336 ms
34,608 KB
testcase_20 AC 335 ms
34,480 KB
testcase_21 AC 334 ms
34,736 KB
testcase_22 AC 340 ms
34,480 KB
testcase_23 AC 339 ms
34,056 KB
testcase_24 AC 338 ms
33,716 KB
testcase_25 AC 339 ms
33,928 KB
testcase_26 AC 339 ms
33,980 KB
testcase_27 AC 338 ms
34,708 KB
testcase_28 AC 338 ms
34,480 KB
testcase_29 AC 339 ms
34,108 KB
testcase_30 AC 336 ms
33,812 KB
testcase_31 AC 337 ms
34,348 KB
testcase_32 AC 336 ms
34,184 KB
testcase_33 AC 335 ms
34,476 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.fsproj を復元しました (239 ms)。
MSBuild のバージョン 17.9.6+a4ecab324 (.NET)
/home/judge/data/code/Main.fs(5,13): warning FS0025: この式のパターン マッチが不完全です たとえば、値 '[|_; _; _|]' はパターンに含まれないケースを示す可能性があります。 [/home/judge/data/code/main.fsproj]
  main -> /home/judge/data/code/bin/Release/net8.0/main.dll
  main -> /home/judge/data/code/bin/Release/net8.0/publish/

ソースコード

diff #

open System
type Sol() =
    member this.Solve() = 
        
        let [|N;K|] = stdin.ReadLine().Split() |> Array.map int
        let f n k =
            match (n,k) with
            | (_,1) -> (1 <<< (n-1) ) - n
            | (_,_) -> (1 <<< (n-k) )
        
        f N K |> printfn "%d"
        
let mySol = new Sol()
mySol.Solve()
0