結果

問題 No.1185 完全な3の倍数
ユーザー natoriusannatoriusan
提出日時 2023-07-31 15:17:22
言語 F#
(F# 4.0)
結果
AC  
実行時間 341 ms / 2,000 ms
コード長 436 bytes
コンパイル時間 11,564 ms
コンパイル使用メモリ 185,652 KB
実行使用メモリ 35,004 KB
最終ジャッジ日時 2024-10-10 08:34:01
合計ジャッジ時間 26,997 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 335 ms
34,740 KB
testcase_01 AC 340 ms
34,440 KB
testcase_02 AC 338 ms
34,880 KB
testcase_03 AC 336 ms
34,044 KB
testcase_04 AC 339 ms
33,812 KB
testcase_05 AC 339 ms
34,352 KB
testcase_06 AC 335 ms
33,936 KB
testcase_07 AC 336 ms
34,872 KB
testcase_08 AC 337 ms
33,936 KB
testcase_09 AC 338 ms
34,348 KB
testcase_10 AC 335 ms
33,792 KB
testcase_11 AC 336 ms
34,592 KB
testcase_12 AC 338 ms
34,176 KB
testcase_13 AC 337 ms
34,612 KB
testcase_14 AC 338 ms
34,608 KB
testcase_15 AC 338 ms
34,184 KB
testcase_16 AC 336 ms
34,056 KB
testcase_17 AC 338 ms
34,444 KB
testcase_18 AC 336 ms
34,608 KB
testcase_19 AC 336 ms
33,936 KB
testcase_20 AC 339 ms
34,196 KB
testcase_21 AC 338 ms
33,908 KB
testcase_22 AC 336 ms
34,488 KB
testcase_23 AC 339 ms
34,624 KB
testcase_24 AC 335 ms
34,716 KB
testcase_25 AC 336 ms
34,332 KB
testcase_26 AC 341 ms
34,620 KB
testcase_27 AC 334 ms
34,720 KB
testcase_28 AC 334 ms
35,004 KB
testcase_29 AC 339 ms
35,004 KB
testcase_30 AC 337 ms
34,044 KB
testcase_31 AC 336 ms
34,992 KB
testcase_32 AC 338 ms
34,500 KB
testcase_33 AC 338 ms
34,476 KB
testcase_34 AC 336 ms
33,684 KB
testcase_35 AC 334 ms
34,496 KB
testcase_36 AC 336 ms
34,860 KB
testcase_37 AC 338 ms
34,748 KB
testcase_38 AC 334 ms
34,492 KB
testcase_39 AC 335 ms
34,352 KB
testcase_40 AC 334 ms
33,980 KB
testcase_41 AC 340 ms
34,044 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.fsproj を復元しました (394 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 n = stdin.ReadLine ()

let rec count (n: string) =
    if n.Length = 1 then
        (n.[0] |> string |> int) / 3 + 1
    elif (n.[0] |> string |> int) % 3 = 0 then
        ((n.[0] |> string |> int) / 3) * (4. ** (float n.Length - 1.) |> int) + count n.[1..]
    else
        ((n.[0] |> string |> int) / 3 + 1) * (4. ** (float n.Length - 1.) |> int)
        
if n.Length = 2 then ((int n)-9) / 3 else count n + 14
    |> printfn "%d"
0