結果

問題 No.104 国道
ユーザー chike_pluschike_plus
提出日時 2019-04-03 09:13:35
言語 F#
(F# 4.0)
結果
AC  
実行時間 44 ms / 5,000 ms
コード長 336 bytes
コンパイル時間 17,446 ms
コンパイル使用メモリ 186,520 KB
実行使用メモリ 29,428 KB
最終ジャッジ日時 2024-05-09 19:31:53
合計ジャッジ時間 19,331 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
29,184 KB
testcase_01 AC 42 ms
29,016 KB
testcase_02 AC 41 ms
29,056 KB
testcase_03 AC 41 ms
29,184 KB
testcase_04 AC 41 ms
29,056 KB
testcase_05 AC 41 ms
29,184 KB
testcase_06 AC 40 ms
29,428 KB
testcase_07 AC 40 ms
29,292 KB
testcase_08 AC 41 ms
29,168 KB
testcase_09 AC 42 ms
29,184 KB
testcase_10 AC 42 ms
29,056 KB
testcase_11 AC 42 ms
28,928 KB
testcase_12 AC 43 ms
29,184 KB
testcase_13 AC 42 ms
28,928 KB
testcase_14 AC 42 ms
29,184 KB
testcase_15 AC 41 ms
29,292 KB
testcase_16 AC 42 ms
29,296 KB
testcase_17 AC 41 ms
29,168 KB
testcase_18 AC 41 ms
29,056 KB
testcase_19 AC 41 ms
29,164 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.fsproj を復元しました (485 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 ``No.104 国道``() =
  let rec loop acc lt =
    match lt with
    | []    -> acc
    | x::xs -> match x with
               | 'L' -> loop (acc * 2) xs
               | 'R' -> loop (acc * 2 + 1) xs
               | _   -> acc
               
  stdin.ReadLine()
  |> Seq.toList
  |> loop 1
  |> stdout.WriteLine

``No.104 国道``()
0