結果

問題 No.682 Average
ユーザー gunmakengunmaken
提出日時 2018-06-03 14:23:40
言語 F#
(F# 4.0)
結果
AC  
実行時間 335 ms / 2,000 ms
コード長 204 bytes
コンパイル時間 6,577 ms
コンパイル使用メモリ 188,756 KB
実行使用メモリ 34,872 KB
最終ジャッジ日時 2024-06-30 09:21:18
合計ジャッジ時間 11,744 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 334 ms
33,940 KB
testcase_01 AC 335 ms
34,852 KB
testcase_02 AC 332 ms
34,184 KB
testcase_03 AC 330 ms
34,872 KB
testcase_04 AC 332 ms
33,932 KB
testcase_05 AC 331 ms
34,724 KB
testcase_06 AC 330 ms
33,812 KB
testcase_07 AC 331 ms
34,476 KB
testcase_08 AC 329 ms
34,616 KB
testcase_09 AC 331 ms
33,808 KB
testcase_10 AC 335 ms
34,616 KB
testcase_11 AC 329 ms
34,044 KB
testcase_12 AC 329 ms
34,188 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.fsproj を復元しました (227 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 a, b = stdin.ReadLine().Split() |> (fun x -> int x.[0], int x.[1])
let rec hoge x =
    if x > b then 0
    elif (a + b + x) % 3 = 0 then 1 + (hoge (x + 1))
    else hoge (x + 1)
printfn "%d" (hoge a)
0