結果
問題 | No.185 和風 |
ユーザー | noelex |
提出日時 | 2017-11-03 17:31:50 |
言語 | F# (F# 4.0) |
結果 |
AC
|
実行時間 | 355 ms / 1,000 ms |
コード長 | 602 bytes |
コンパイル時間 | 7,254 ms |
コンパイル使用メモリ | 194,284 KB |
実行使用メモリ | 35,392 KB |
最終ジャッジ日時 | 2024-05-02 04:46:34 |
合計ジャッジ時間 | 10,704 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 341 ms
34,672 KB |
testcase_01 | AC | 354 ms
34,736 KB |
testcase_02 | AC | 352 ms
35,392 KB |
testcase_03 | AC | 353 ms
34,396 KB |
testcase_04 | AC | 354 ms
34,860 KB |
testcase_05 | AC | 347 ms
34,444 KB |
testcase_06 | AC | 355 ms
35,244 KB |
コンパイルメッセージ
復元対象のプロジェクトを決定しています... /home/judge/data/code/main.fsproj を復元しました (252 ms)。 MSBuild のバージョン 17.9.6+a4ecab324 (.NET) main -> /home/judge/data/code/bin/Release/net8.0/main.dll main -> /home/judge/data/code/bin/Release/net8.0/publish/
ソースコード
open System [<EntryPoint>] let main argv = let rec readLines n=function | lst when n=0 -> lst | lst -> let line = Console.ReadLine().Split(' ') (Seq.head line |> int, Seq.last line |> int) :: lst |> readLines (n-1) let rec solve n lst= match lst, n with | (x,y)::tail, None -> solve (Some (y-x)) tail | (x,y)::tail, Some n -> if n=y-x then solve (Some n) tail else -1 | [], Some n when n > 0 -> n | _, _ -> -1 let N = Console.ReadLine () |> int [] |> (readLines N) |> solve None |> printfn "%d" 0