結果

問題 No.1168 Digit Sum Sequence
ユーザー natoriusannatoriusan
提出日時 2023-07-27 14:47:14
言語 F#
(F# 4.0)
結果
AC  
実行時間 331 ms / 2,000 ms
コード長 218 bytes
コンパイル時間 7,469 ms
コンパイル使用メモリ 188,244 KB
実行使用メモリ 35,104 KB
最終ジャッジ日時 2024-10-04 10:50:36
合計ジャッジ時間 18,138 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 328 ms
34,972 KB
testcase_01 AC 316 ms
34,836 KB
testcase_02 AC 310 ms
34,712 KB
testcase_03 AC 320 ms
34,724 KB
testcase_04 AC 320 ms
34,468 KB
testcase_05 AC 314 ms
34,712 KB
testcase_06 AC 314 ms
34,708 KB
testcase_07 AC 310 ms
34,836 KB
testcase_08 AC 315 ms
34,816 KB
testcase_09 AC 321 ms
34,580 KB
testcase_10 AC 329 ms
34,844 KB
testcase_11 AC 325 ms
34,720 KB
testcase_12 AC 317 ms
34,708 KB
testcase_13 AC 323 ms
34,720 KB
testcase_14 AC 322 ms
34,588 KB
testcase_15 AC 331 ms
34,576 KB
testcase_16 AC 318 ms
34,588 KB
testcase_17 AC 316 ms
34,592 KB
testcase_18 AC 310 ms
34,688 KB
testcase_19 AC 317 ms
34,840 KB
testcase_20 AC 322 ms
34,460 KB
testcase_21 AC 314 ms
34,708 KB
testcase_22 AC 323 ms
34,716 KB
testcase_23 AC 326 ms
34,592 KB
testcase_24 AC 324 ms
34,196 KB
testcase_25 AC 322 ms
34,720 KB
testcase_26 AC 322 ms
35,104 KB
testcase_27 AC 320 ms
34,960 KB
testcase_28 AC 315 ms
34,844 KB
testcase_29 AC 325 ms
34,972 KB
testcase_30 AC 322 ms
34,588 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.fsproj を復元しました (257 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 () |> int

let rec calc count x =
    if count = 0 then
        x
    else
        x |> string |> Seq.map (string >> int) |> Seq.sum |> calc (count-1)
        
        
calc 100 n |> printfn "%d"
0