結果

問題 No.1070 Missing a space
ユーザー ikdikd
提出日時 2020-06-06 12:19:20
言語 F#
(F# 4.0)
結果
AC  
実行時間 316 ms / 1,000 ms
コード長 253 bytes
コンパイル時間 11,645 ms
コンパイル使用メモリ 186,056 KB
実行使用メモリ 34,608 KB
最終ジャッジ日時 2024-06-06 01:24:48
合計ジャッジ時間 14,286 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 305 ms
34,316 KB
testcase_01 AC 303 ms
34,468 KB
testcase_02 AC 300 ms
34,472 KB
testcase_03 AC 306 ms
34,352 KB
testcase_04 AC 302 ms
34,480 KB
testcase_05 AC 304 ms
34,584 KB
testcase_06 AC 307 ms
34,600 KB
testcase_07 AC 316 ms
34,608 KB
testcase_08 AC 306 ms
34,436 KB
testcase_09 AC 307 ms
34,348 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.fsproj を復元しました (248 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 #

// Learn more about F# at http://fsharp.org

open System

[<EntryPoint>]
let main argv =
    let c = stdin.ReadLine()
    c
    |> Seq.tail
    |> Seq.filter (fun x -> x <> '0')
    |> Seq.length
    |> printfn "%d"
    0 // return an integer exit code
0