結果

問題 No.415 ぴょん
ユーザー kuuso1kuuso1
提出日時 2016-08-26 22:45:47
言語 F#
(F# 4.0)
結果
AC  
実行時間 325 ms / 1,000 ms
コード長 423 bytes
コンパイル時間 13,134 ms
コンパイル使用メモリ 191,728 KB
実行使用メモリ 34,860 KB
最終ジャッジ日時 2024-11-18 14:35:43
合計ジャッジ時間 15,789 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 310 ms
34,060 KB
testcase_01 AC 313 ms
34,592 KB
testcase_02 AC 325 ms
34,484 KB
testcase_03 AC 317 ms
34,616 KB
testcase_04 AC 312 ms
34,608 KB
testcase_05 AC 305 ms
34,736 KB
testcase_06 AC 303 ms
33,928 KB
testcase_07 AC 306 ms
34,364 KB
testcase_08 AC 304 ms
33,928 KB
testcase_09 AC 305 ms
34,736 KB
testcase_10 AC 303 ms
34,728 KB
testcase_11 AC 300 ms
34,608 KB
testcase_12 AC 314 ms
34,596 KB
testcase_13 AC 319 ms
34,100 KB
testcase_14 AC 304 ms
34,056 KB
testcase_15 AC 302 ms
34,040 KB
testcase_16 AC 305 ms
34,616 KB
testcase_17 AC 299 ms
34,608 KB
testcase_18 AC 307 ms
34,476 KB
testcase_19 AC 309 ms
33,672 KB
testcase_20 AC 309 ms
34,480 KB
testcase_21 AC 310 ms
34,584 KB
testcase_22 AC 307 ms
34,360 KB
testcase_23 AC 304 ms
34,468 KB
testcase_24 AC 304 ms
34,732 KB
testcase_25 AC 303 ms
34,860 KB
testcase_26 AC 309 ms
34,352 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.fsproj を復元しました (416 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/

ソースコード

diff #

open System

let ri () = stdin.ReadLine() |> int
let ria () = stdin.ReadLine().Split() |> Array.map int
let rec gcd a b = if a = 0 then b else gcd (b%a) a

type Sol() =
    member this.Solve() = 
        
        let (N,D) = stdin.ReadLine().Split(' ') |> Array.map int |> (fun a -> (a.[0],a.[1]))
        
        N / (gcd N D) - 1 |> printfn "%d"
        
        
        
        ()
let mySol = new Sol()
mySol.Solve()
0