結果

問題 No.442 和と積
ユーザー taktak
提出日時 2018-05-26 03:30:22
言語 F#
(F# 4.0)
結果
AC  
実行時間 340 ms / 1,000 ms
コード長 382 bytes
コンパイル時間 14,298 ms
コンパイル使用メモリ 189,136 KB
実行使用メモリ 34,988 KB
最終ジャッジ日時 2024-07-04 23:13:11
合計ジャッジ時間 20,409 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 337 ms
34,872 KB
testcase_01 AC 336 ms
34,616 KB
testcase_02 AC 339 ms
34,488 KB
testcase_03 AC 340 ms
34,588 KB
testcase_04 AC 340 ms
34,192 KB
testcase_05 AC 330 ms
34,624 KB
testcase_06 AC 335 ms
34,724 KB
testcase_07 AC 334 ms
34,612 KB
testcase_08 AC 331 ms
34,872 KB
testcase_09 AC 335 ms
34,616 KB
testcase_10 AC 332 ms
34,752 KB
testcase_11 AC 336 ms
34,748 KB
testcase_12 AC 340 ms
34,988 KB
testcase_13 AC 338 ms
34,740 KB
testcase_14 AC 337 ms
33,848 KB
testcase_15 AC 340 ms
34,196 KB
testcase_16 AC 339 ms
34,160 KB
testcase_17 AC 338 ms
34,616 KB
testcase_18 AC 339 ms
34,744 KB
testcase_19 AC 337 ms
34,616 KB
testcase_20 AC 335 ms
34,844 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.fsproj を復元しました (667 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 #

let R () = let t = stdin.ReadLine().Split()
                   |> Array.map int64
           t.[0], t.[1]
        
let rec gcd a b =  
    if a < b then 
        gcd b a
    else
        match b with
        | 0L -> a
        | b  -> gcd b (a % b)
    
    
let A, B = R ()

let G = 
    let g = gcd A B
    let a = A / g
    let b = B / g
    (gcd (a + b) g) * g

G |> printfn "%i"
0