結果

問題 No.1020 Reverse
ユーザー iwotiwot
提出日時 2020-06-19 23:12:11
言語 F#
(F# 4.0)
結果
AC  
実行時間 87 ms / 2,000 ms
コード長 308 bytes
コンパイル時間 13,511 ms
コンパイル使用メモリ 207,828 KB
実行使用メモリ 40,064 KB
最終ジャッジ日時 2024-07-03 15:34:03
合計ジャッジ時間 15,965 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 64 ms
30,464 KB
testcase_01 AC 64 ms
30,336 KB
testcase_02 AC 66 ms
30,592 KB
testcase_03 AC 65 ms
30,848 KB
testcase_04 AC 60 ms
30,592 KB
testcase_05 AC 63 ms
30,332 KB
testcase_06 AC 65 ms
30,700 KB
testcase_07 AC 71 ms
33,664 KB
testcase_08 AC 65 ms
32,256 KB
testcase_09 AC 65 ms
31,488 KB
testcase_10 AC 79 ms
35,180 KB
testcase_11 AC 86 ms
36,736 KB
testcase_12 AC 71 ms
32,640 KB
testcase_13 AC 72 ms
32,768 KB
testcase_14 AC 81 ms
37,244 KB
testcase_15 AC 87 ms
39,808 KB
testcase_16 AC 84 ms
40,064 KB
testcase_17 AC 69 ms
32,768 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.fsproj を復元しました (278 ms)。
MSBuild のバージョン 17.9.6+a4ecab324 (.NET)
/home/judge/data/code/Main.fs(1,5): 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 #

let [| N; K |] = stdin.ReadLine().Split(' ') |> Array.map int
let S = stdin.ReadLine().Trim()

let solve n k (s:string) =
    if (n - k) % 2 <> 0 then
        s.[k-1 .. ] + s.[ .. k-2]
    else
        s.[k-1 .. ] + (s.[ .. k-2] |> Seq.toList |> Seq.rev |> System.String.Concat)

printfn "%s" <| solve N K S
0