結果
問題 | No.292 芸名 |
ユーザー | vain0 |
提出日時 | 2015-10-23 22:25:28 |
言語 | F# (F# 4.0) |
結果 |
AC
|
実行時間 | 73 ms / 2,000 ms |
コード長 | 332 bytes |
コンパイル時間 | 17,515 ms |
コンパイル使用メモリ | 205,476 KB |
実行使用メモリ | 30,848 KB |
最終ジャッジ日時 | 2024-07-22 18:11:15 |
合計ジャッジ時間 | 19,409 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 70 ms
30,464 KB |
testcase_01 | AC | 71 ms
30,208 KB |
testcase_02 | AC | 72 ms
30,592 KB |
testcase_03 | AC | 71 ms
30,848 KB |
testcase_04 | AC | 72 ms
30,588 KB |
testcase_05 | AC | 72 ms
30,464 KB |
testcase_06 | AC | 70 ms
30,592 KB |
testcase_07 | AC | 70 ms
30,592 KB |
testcase_08 | AC | 71 ms
30,336 KB |
testcase_09 | AC | 72 ms
30,464 KB |
testcase_10 | AC | 70 ms
30,336 KB |
testcase_11 | AC | 71 ms
30,848 KB |
testcase_12 | AC | 73 ms
30,464 KB |
コンパイルメッセージ
復元対象のプロジェクトを決定しています... /home/judge/data/code/main.fsproj を復元しました (383 ms)。 MSBuild のバージョン 17.9.6+a4ecab324 (.NET) /home/judge/data/code/Main.fs(6,7): 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/
ソースコード
open System open System.Collections.Generic [<EntryPoint>] let main argv = let [| s; t; u |] = Console.ReadLine().Split(' ') let t = int t let u = int u let result = let s' = s.Remove(t, 1) if t <> u then s'.Remove((if t < u then u - 1 else u), 1) else s' printfn "%s" result //exit code 0