結果

問題 No.1372 Median of Submasks
ユーザー yumechiyumechi
提出日時 2021-03-03 00:38:18
言語 Scala(Beta)
(3.4.0)
結果
AC  
実行時間 977 ms / 2,000 ms
コード長 204 bytes
コンパイル時間 9,300 ms
コンパイル使用メモリ 284,488 KB
実行使用メモリ 65,324 KB
最終ジャッジ日時 2024-10-03 03:02:51
合計ジャッジ時間 36,250 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 964 ms
65,256 KB
testcase_01 AC 971 ms
65,128 KB
testcase_02 AC 968 ms
65,180 KB
testcase_03 AC 957 ms
65,296 KB
testcase_04 AC 963 ms
65,064 KB
testcase_05 AC 956 ms
65,052 KB
testcase_06 AC 955 ms
65,228 KB
testcase_07 AC 951 ms
65,104 KB
testcase_08 AC 951 ms
65,152 KB
testcase_09 AC 953 ms
64,904 KB
testcase_10 AC 959 ms
65,268 KB
testcase_11 AC 959 ms
65,040 KB
testcase_12 AC 952 ms
65,112 KB
testcase_13 AC 967 ms
65,144 KB
testcase_14 AC 963 ms
64,964 KB
testcase_15 AC 947 ms
65,288 KB
testcase_16 AC 957 ms
65,172 KB
testcase_17 AC 946 ms
65,136 KB
testcase_18 AC 960 ms
65,104 KB
testcase_19 AC 962 ms
65,196 KB
testcase_20 AC 977 ms
65,056 KB
testcase_21 AC 966 ms
65,136 KB
testcase_22 AC 958 ms
64,944 KB
testcase_23 AC 956 ms
65,052 KB
testcase_24 AC 964 ms
65,324 KB
testcase_25 AC 960 ms
65,284 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner

object Main extends App {
  val sc = new Scanner(System.in)

  val n = BigInt(sc.next)
  println((0 to 60).toList.map(a => scala.math.pow(2, a).toLong).filter(a => a <= n).max)
}
0