結果

問題 No.1020 Reverse
ユーザー ikdikd
提出日時 2020-05-03 13:32:58
言語 F#
(F# 4.0)
結果
AC  
実行時間 94 ms / 2,000 ms
コード長 458 bytes
コンパイル時間 15,850 ms
コンパイル使用メモリ 207,480 KB
実行使用メモリ 35,072 KB
最終ジャッジ日時 2024-06-11 21:01:58
合計ジャッジ時間 18,647 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 61 ms
30,552 KB
testcase_01 AC 64 ms
30,592 KB
testcase_02 AC 67 ms
30,592 KB
testcase_03 AC 66 ms
30,976 KB
testcase_04 AC 62 ms
30,592 KB
testcase_05 AC 63 ms
30,336 KB
testcase_06 AC 66 ms
30,592 KB
testcase_07 AC 73 ms
32,768 KB
testcase_08 AC 68 ms
32,256 KB
testcase_09 AC 68 ms
31,872 KB
testcase_10 AC 94 ms
34,048 KB
testcase_11 AC 74 ms
34,136 KB
testcase_12 AC 67 ms
32,600 KB
testcase_13 AC 65 ms
32,380 KB
testcase_14 AC 72 ms
34,552 KB
testcase_15 AC 73 ms
35,040 KB
testcase_16 AC 73 ms
35,072 KB
testcase_17 AC 64 ms
32,512 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.fsproj を復元しました (357 ms)。
MSBuild のバージョン 17.9.6+a4ecab324 (.NET)
/home/judge/data/code/Main.fs(7,9): 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 #

// Learn more about F# at http://fsharp.org

open System

[<EntryPoint>]
let main argv =
    let [| n; k |] = stdin.ReadLine().Split() |> Array.map int
    let s = stdin.ReadLine()

    let p = s.[..k - 2]
    s.[k - 1..] + (if (n - k + 1) % 2 = 0 then
                       p
                   else
                       p
                       |> Seq.rev
                       |> String.Concat)
    |> printf "%s"
    0 // return an integer exit code
0