結果

問題 No.411 昇順昇順ソート
ユーザー convexineqconvexineq
提出日時 2021-02-03 03:51:12
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 82 ms / 2,000 ms
コード長 147 bytes
コンパイル時間 137 ms
コンパイル使用メモリ 81,892 KB
実行使用メモリ 53,224 KB
最終ジャッジ日時 2024-06-30 00:12:08
合計ジャッジ時間 2,293 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
52,712 KB
testcase_01 AC 32 ms
53,128 KB
testcase_02 AC 31 ms
53,224 KB
testcase_03 AC 33 ms
52,500 KB
testcase_04 AC 35 ms
51,556 KB
testcase_05 AC 34 ms
52,380 KB
testcase_06 AC 82 ms
52,564 KB
testcase_07 AC 56 ms
52,052 KB
testcase_08 AC 34 ms
52,824 KB
testcase_09 AC 34 ms
51,556 KB
testcase_10 AC 34 ms
51,816 KB
testcase_11 AC 35 ms
51,624 KB
testcase_12 AC 35 ms
52,572 KB
testcase_13 AC 31 ms
52,180 KB
testcase_14 AC 31 ms
52,436 KB
testcase_15 AC 31 ms
52,812 KB
testcase_16 AC 32 ms
51,992 KB
testcase_17 AC 32 ms
51,992 KB
testcase_18 AC 31 ms
52,316 KB
testcase_19 AC 31 ms
53,200 KB
testcase_20 AC 31 ms
52,324 KB
testcase_21 AC 31 ms
52,876 KB
testcase_22 AC 31 ms
52,364 KB
testcase_23 AC 35 ms
51,896 KB
testcase_24 AC 36 ms
52,440 KB
testcase_25 AC 34 ms
52,436 KB
testcase_26 AC 34 ms
51,912 KB
testcase_27 AC 33 ms
51,544 KB
testcase_28 AC 34 ms
52,888 KB
testcase_29 AC 35 ms
51,948 KB
testcase_30 AC 35 ms
52,348 KB
testcase_31 AC 34 ms
52,092 KB
testcase_32 AC 34 ms
52,176 KB
testcase_33 AC 34 ms
52,332 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,k = map(int,input().split())
if k != 1:
    print(1<<n-k)
else:
    ans = 0
    for j in range(1,n):
        ans += 2**(n-j-1) - 1
    print(ans)
0