結果

問題 No.1372 Median of Submasks
ユーザー yumechiyumechi
提出日時 2021-03-03 00:39:20
言語 Scala(Beta)
(3.4.0)
結果
AC  
実行時間 972 ms / 2,000 ms
コード長 193 bytes
コンパイル時間 9,212 ms
コンパイル使用メモリ 269,220 KB
実行使用メモリ 63,712 KB
最終ジャッジ日時 2024-10-03 03:03:39
合計ジャッジ時間 35,813 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 955 ms
63,288 KB
testcase_01 AC 958 ms
63,568 KB
testcase_02 AC 955 ms
63,488 KB
testcase_03 AC 957 ms
63,480 KB
testcase_04 AC 958 ms
63,428 KB
testcase_05 AC 953 ms
63,384 KB
testcase_06 AC 949 ms
63,344 KB
testcase_07 AC 955 ms
63,692 KB
testcase_08 AC 961 ms
63,528 KB
testcase_09 AC 950 ms
63,448 KB
testcase_10 AC 961 ms
63,580 KB
testcase_11 AC 972 ms
63,692 KB
testcase_12 AC 955 ms
63,428 KB
testcase_13 AC 963 ms
63,312 KB
testcase_14 AC 959 ms
63,568 KB
testcase_15 AC 956 ms
63,168 KB
testcase_16 AC 961 ms
63,420 KB
testcase_17 AC 952 ms
63,396 KB
testcase_18 AC 948 ms
63,488 KB
testcase_19 AC 949 ms
63,224 KB
testcase_20 AC 967 ms
63,636 KB
testcase_21 AC 967 ms
63,712 KB
testcase_22 AC 956 ms
63,112 KB
testcase_23 AC 959 ms
63,448 KB
testcase_24 AC 963 ms
63,248 KB
testcase_25 AC 960 ms
63,536 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 => BigInt(2).pow(a)).filter(a => a <= n).max)
}
0