結果
問題 | No.185 和風 |
ユーザー | regerege |
提出日時 | 2017-04-15 16:14:16 |
言語 | F# (F# 4.0) |
結果 |
AC
|
実行時間 | 306 ms / 1,000 ms |
コード長 | 246 bytes |
コンパイル時間 | 9,256 ms |
コンパイル使用メモリ | 193,700 KB |
実行使用メモリ | 35,120 KB |
最終ジャッジ日時 | 2024-07-18 17:55:48 |
合計ジャッジ時間 | 12,653 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 293 ms
34,800 KB |
testcase_01 | AC | 301 ms
35,120 KB |
testcase_02 | AC | 301 ms
34,984 KB |
testcase_03 | AC | 300 ms
34,704 KB |
testcase_04 | AC | 296 ms
34,216 KB |
testcase_05 | AC | 306 ms
34,368 KB |
testcase_06 | AC | 301 ms
34,984 KB |
コンパイルメッセージ
復元対象のプロジェクトを決定しています... /home/judge/data/code/main.fsproj を復元しました (303 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/
ソースコード
let N = stdin.ReadLine() |> int let r() = let arr = stdin.ReadLine().Split(' ') |> Array.map int in arr.[1] - arr.[0] let arr = [ for x in 1..N -> r() ] let a = arr.[0] if List.forall ((=)a) arr && arr.[0] > 0 then arr.[0] else -1 |> printfn "%d"