結果

問題 No.104 国道
ユーザー keidenkeiden
提出日時 2024-09-19 23:49:33
言語 Scala(Beta)
(3.4.0)
結果
AC  
実行時間 895 ms / 5,000 ms
コード長 152 bytes
コンパイル時間 9,085 ms
コンパイル使用メモリ 250,468 KB
実行使用メモリ 62,564 KB
最終ジャッジ日時 2024-09-19 23:50:06
合計ジャッジ時間 29,432 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 852 ms
62,480 KB
testcase_01 AC 886 ms
62,452 KB
testcase_02 AC 884 ms
62,268 KB
testcase_03 AC 889 ms
62,548 KB
testcase_04 AC 855 ms
62,492 KB
testcase_05 AC 891 ms
62,300 KB
testcase_06 AC 895 ms
62,460 KB
testcase_07 AC 864 ms
62,476 KB
testcase_08 AC 887 ms
62,464 KB
testcase_09 AC 888 ms
62,524 KB
testcase_10 AC 884 ms
62,496 KB
testcase_11 AC 858 ms
62,244 KB
testcase_12 AC 879 ms
62,436 KB
testcase_13 AC 887 ms
62,444 KB
testcase_14 AC 866 ms
62,472 KB
testcase_15 AC 885 ms
62,424 KB
testcase_16 AC 885 ms
62,544 KB
testcase_17 AC 855 ms
62,384 KB
testcase_18 AC 891 ms
62,480 KB
testcase_19 AC 885 ms
62,564 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import scala.io.StdIn.readLine


@main
def yuki104() : Unit =
  println(readLine.foldLeft(1) { (r, c) =>
    if c == 'L' then 2 * r else 1 + 2 * r
  })
0