結果

問題 No.136 Yet Another GCD Problem
ユーザー taktak
提出日時 2018-03-22 23:51:55
言語 F#
(F# 4.0)
結果
AC  
実行時間 364 ms / 5,000 ms
コード長 254 bytes
コンパイル時間 7,304 ms
コンパイル使用メモリ 193,368 KB
実行使用メモリ 41,556 KB
最終ジャッジ日時 2024-06-24 20:33:45
合計ジャッジ時間 23,166 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 338 ms
34,660 KB
testcase_01 AC 329 ms
34,788 KB
testcase_02 AC 326 ms
34,912 KB
testcase_03 AC 353 ms
39,020 KB
testcase_04 AC 358 ms
41,144 KB
testcase_05 AC 340 ms
37,016 KB
testcase_06 AC 342 ms
36,492 KB
testcase_07 AC 339 ms
36,936 KB
testcase_08 AC 344 ms
38,368 KB
testcase_09 AC 334 ms
35,400 KB
testcase_10 AC 346 ms
38,476 KB
testcase_11 AC 356 ms
40,340 KB
testcase_12 AC 332 ms
34,944 KB
testcase_13 AC 343 ms
38,076 KB
testcase_14 AC 358 ms
41,556 KB
testcase_15 AC 352 ms
40,992 KB
testcase_16 AC 353 ms
40,344 KB
testcase_17 AC 349 ms
39,520 KB
testcase_18 AC 328 ms
34,848 KB
testcase_19 AC 351 ms
39,976 KB
testcase_20 AC 344 ms
38,284 KB
testcase_21 AC 334 ms
35,168 KB
testcase_22 AC 330 ms
35,040 KB
testcase_23 AC 331 ms
35,052 KB
testcase_24 AC 330 ms
34,792 KB
testcase_25 AC 335 ms
35,028 KB
testcase_26 AC 334 ms
34,856 KB
testcase_27 AC 353 ms
39,980 KB
testcase_28 AC 353 ms
38,832 KB
testcase_29 AC 329 ms
35,420 KB
testcase_30 AC 329 ms
35,044 KB
testcase_31 AC 332 ms
34,788 KB
testcase_32 AC 323 ms
34,792 KB
testcase_33 AC 328 ms
35,020 KB
testcase_34 AC 340 ms
36,740 KB
testcase_35 AC 342 ms
38,456 KB
testcase_36 AC 347 ms
36,336 KB
testcase_37 AC 364 ms
40,728 KB
testcase_38 AC 328 ms
34,912 KB
testcase_39 AC 329 ms
35,044 KB
testcase_40 AC 325 ms
34,784 KB
testcase_41 AC 331 ms
34,912 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.fsproj を復元しました (249 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 rec gcd a b =
    match b with 
    | 0 -> a
    | _ -> gcd b (a%b)

let N,K = 
    let t = Console.ReadLine().Split()
            |> Array.map(int)
    t.[0],t.[1]

[1..N-1]
|> List.map (fun x -> gcd x (N-x))
|> List.max
|> printfn "%i"
0