結果
問題 | No.1020 Reverse |
ユーザー | iwot |
提出日時 | 2020-06-19 21:17:05 |
言語 | F# (F# 4.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 376 bytes |
コンパイル時間 | 6,589 ms |
コンパイル使用メモリ | 206,992 KB |
実行使用メモリ | 70,688 KB |
最終ジャッジ日時 | 2024-07-03 13:33:16 |
合計ジャッジ時間 | 10,902 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 71 ms
34,560 KB |
testcase_01 | AC | 71 ms
36,352 KB |
testcase_02 | AC | 70 ms
30,848 KB |
testcase_03 | AC | 93 ms
39,552 KB |
testcase_04 | AC | 66 ms
30,972 KB |
testcase_05 | AC | 98 ms
40,960 KB |
testcase_06 | AC | 76 ms
32,000 KB |
testcase_07 | TLE | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
コンパイルメッセージ
復元対象のプロジェクトを決定しています... /home/judge/data/code/main.fsproj を復元しました (222 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/
ソースコード
let [| N; K |] = stdin.ReadLine().Split(' ') |> Array.map int let S = stdin.ReadLine().Trim() let reverse i j (s:string) = let s2 = s.[i..j] |> Seq.toList |> Seq.rev |> System.String.Concat let max = s.Length let r1 = s.[0..i-1] let r2 = s.[j+1 ..] r1 + s2 + r2 let mutable r = S for i in 1 .. (N-K+1) do r <- reverse (i-1) (i+K-2) r printfn "%s" r