結果

問題 No.668 6.0*10^23
ユーザー taktak
提出日時 2018-04-12 20:28:31
言語 F#
(F# 4.0)
結果
AC  
実行時間 81 ms / 2,000 ms
コード長 363 bytes
コンパイル時間 13,936 ms
コンパイル使用メモリ 193,036 KB
実行使用メモリ 34,432 KB
最終ジャッジ日時 2024-06-30 05:53:01
合計ジャッジ時間 19,482 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 75 ms
32,256 KB
testcase_01 AC 81 ms
34,304 KB
testcase_02 AC 79 ms
33,664 KB
testcase_03 AC 78 ms
33,536 KB
testcase_04 AC 77 ms
33,772 KB
testcase_05 AC 75 ms
33,152 KB
testcase_06 AC 77 ms
33,536 KB
testcase_07 AC 74 ms
32,384 KB
testcase_08 AC 74 ms
32,492 KB
testcase_09 AC 74 ms
32,128 KB
testcase_10 AC 75 ms
33,152 KB
testcase_11 AC 77 ms
34,176 KB
testcase_12 AC 77 ms
33,388 KB
testcase_13 AC 77 ms
34,176 KB
testcase_14 AC 78 ms
34,048 KB
testcase_15 AC 77 ms
32,896 KB
testcase_16 AC 77 ms
33,408 KB
testcase_17 AC 76 ms
34,304 KB
testcase_18 AC 76 ms
33,408 KB
testcase_19 AC 77 ms
33,024 KB
testcase_20 AC 76 ms
33,408 KB
testcase_21 AC 76 ms
33,664 KB
testcase_22 AC 78 ms
33,920 KB
testcase_23 AC 77 ms
33,536 KB
testcase_24 AC 76 ms
32,896 KB
testcase_25 AC 77 ms
33,920 KB
testcase_26 AC 74 ms
32,384 KB
testcase_27 AC 76 ms
33,628 KB
testcase_28 AC 76 ms
33,920 KB
testcase_29 AC 75 ms
33,280 KB
testcase_30 AC 78 ms
33,920 KB
testcase_31 AC 76 ms
33,408 KB
testcase_32 AC 75 ms
33,132 KB
testcase_33 AC 76 ms
34,048 KB
testcase_34 AC 76 ms
33,280 KB
testcase_35 AC 76 ms
33,152 KB
testcase_36 AC 76 ms
33,648 KB
testcase_37 AC 77 ms
34,176 KB
testcase_38 AC 76 ms
33,508 KB
testcase_39 AC 77 ms
33,664 KB
testcase_40 AC 78 ms
34,148 KB
testcase_41 AC 78 ms
34,048 KB
testcase_42 AC 78 ms
33,280 KB
testcase_43 AC 78 ms
34,048 KB
testcase_44 AC 78 ms
34,432 KB
testcase_45 AC 78 ms
32,384 KB
testcase_46 AC 74 ms
32,384 KB
testcase_47 AC 74 ms
32,128 KB
testcase_48 AC 74 ms
32,240 KB
testcase_49 AC 75 ms
32,512 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.fsproj を復元しました (319 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 arr   = N.ToCharArray() |> Array.map (fun c -> (int c)-(int '0'))
let front = arr.[0..2] |> Array.fold (fun acc x -> acc + x.ToString()) "" |> int
let other = (arr |> Array.length) - 3

let f,n = let t = front.ToString("E1").Split('+') 
          in t.[0].Replace("E","*10^"),t.[1] |> int

f + (n+other).ToString()
|> printfn "%s"
0