結果
問題 | No.185 和風 |
ユーザー | noelex |
提出日時 | 2017-11-03 17:29:25 |
言語 | F# (F# 4.0) |
結果 |
AC
|
実行時間 | 335 ms / 1,000 ms |
コード長 | 602 bytes |
コンパイル時間 | 15,807 ms |
コンパイル使用メモリ | 194,232 KB |
実行使用メモリ | 35,168 KB |
最終ジャッジ日時 | 2024-11-22 15:31:06 |
合計ジャッジ時間 | 15,541 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 334 ms
35,168 KB |
testcase_01 | AC | 328 ms
34,812 KB |
testcase_02 | AC | 331 ms
34,560 KB |
testcase_03 | AC | 330 ms
35,100 KB |
testcase_04 | AC | 334 ms
34,576 KB |
testcase_05 | AC | 335 ms
34,328 KB |
testcase_06 | AC | 328 ms
34,692 KB |
コンパイルメッセージ
復元対象のプロジェクトを決定しています... /home/judge/data/code/main.fsproj を復元しました (556 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