結果

問題 No.671 1000000007
ユーザー taktak
提出日時 2018-06-18 00:17:27
言語 F#
(F# 4.0)
結果
AC  
実行時間 338 ms / 2,000 ms
コード長 297 bytes
コンパイル時間 8,935 ms
コンパイル使用メモリ 186,624 KB
実行使用メモリ 33,736 KB
最終ジャッジ日時 2024-06-30 16:42:00
合計ジャッジ時間 12,735 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 335 ms
33,360 KB
testcase_01 AC 335 ms
33,724 KB
testcase_02 AC 335 ms
33,604 KB
testcase_03 AC 336 ms
33,728 KB
testcase_04 AC 335 ms
33,468 KB
testcase_05 AC 335 ms
33,336 KB
testcase_06 AC 336 ms
33,448 KB
testcase_07 AC 337 ms
33,364 KB
testcase_08 AC 337 ms
33,600 KB
testcase_09 AC 337 ms
33,476 KB
testcase_10 AC 338 ms
33,736 KB
testcase_11 AC 336 ms
33,600 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.fsproj を復元しました (232 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 zeroCount (str:string) =
    str.ToCharArray()
    |> Array.where(fun c -> c = '0')
    |> Array.length

let roleModel = "1000000007"
let roleModel'sZeroCnt = roleModel |> zeroCount

let N = stdin.ReadLine()
let N'sZeroCnt = N |> zeroCount

abs(roleModel'sZeroCnt - N'sZeroCnt) |> printfn "%i"
0