結果

問題 No.2853 A + B Problem
ユーザー scalerscaler
提出日時 2024-08-30 14:31:11
言語 Scala(Beta)
(3.4.0)
結果
AC  
実行時間 929 ms / 2,000 ms
コード長 124 bytes
コンパイル時間 17,746 ms
コンパイル使用メモリ 255,580 KB
実行使用メモリ 64,128 KB
最終ジャッジ日時 2024-08-30 14:31:57
合計ジャッジ時間 39,216 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 899 ms
63,932 KB
testcase_01 AC 883 ms
64,108 KB
testcase_02 AC 861 ms
63,964 KB
testcase_03 AC 868 ms
64,076 KB
testcase_04 AC 886 ms
64,104 KB
testcase_05 AC 887 ms
64,036 KB
testcase_06 AC 866 ms
63,880 KB
testcase_07 AC 887 ms
63,880 KB
testcase_08 AC 920 ms
63,940 KB
testcase_09 AC 904 ms
63,788 KB
testcase_10 AC 900 ms
63,980 KB
testcase_11 AC 879 ms
64,064 KB
testcase_12 AC 896 ms
63,928 KB
testcase_13 AC 880 ms
63,892 KB
testcase_14 AC 872 ms
63,944 KB
testcase_15 AC 879 ms
64,060 KB
testcase_16 AC 879 ms
63,852 KB
testcase_17 AC 863 ms
63,980 KB
testcase_18 AC 885 ms
63,876 KB
testcase_19 AC 884 ms
63,936 KB
testcase_20 AC 855 ms
64,036 KB
testcase_21 AC 892 ms
63,996 KB
testcase_22 AC 891 ms
63,828 KB
testcase_23 AC 876 ms
64,076 KB
testcase_24 AC 864 ms
64,028 KB
testcase_25 AC 914 ms
64,112 KB
testcase_26 AC 899 ms
63,928 KB
testcase_27 AC 928 ms
63,924 KB
testcase_28 AC 871 ms
63,920 KB
testcase_29 AC 929 ms
64,128 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import scala.io.StdIn
@main def yuki2853(): Unit =
  val n = BigInt(StdIn.readLine)
  println(BigInt(2).pow(n.bitCount) - 2)
0