結果

問題 No.411 昇順昇順ソート
ユーザー kohei2019kohei2019
提出日時 2022-01-23 13:10:24
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 44 ms / 2,000 ms
コード長 186 bytes
コンパイル時間 419 ms
コンパイル使用メモリ 82,152 KB
実行使用メモリ 53,804 KB
最終ジャッジ日時 2024-05-07 00:45:06
合計ジャッジ時間 3,164 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,144 KB
testcase_01 AC 39 ms
52,520 KB
testcase_02 AC 39 ms
52,496 KB
testcase_03 AC 42 ms
52,400 KB
testcase_04 AC 39 ms
52,132 KB
testcase_05 AC 44 ms
52,192 KB
testcase_06 AC 39 ms
52,204 KB
testcase_07 AC 40 ms
52,372 KB
testcase_08 AC 40 ms
53,160 KB
testcase_09 AC 39 ms
53,428 KB
testcase_10 AC 39 ms
52,352 KB
testcase_11 AC 40 ms
51,944 KB
testcase_12 AC 39 ms
52,304 KB
testcase_13 AC 41 ms
52,352 KB
testcase_14 AC 39 ms
53,220 KB
testcase_15 AC 40 ms
52,204 KB
testcase_16 AC 39 ms
52,492 KB
testcase_17 AC 39 ms
52,892 KB
testcase_18 AC 39 ms
53,108 KB
testcase_19 AC 40 ms
52,824 KB
testcase_20 AC 39 ms
53,264 KB
testcase_21 AC 41 ms
52,684 KB
testcase_22 AC 39 ms
52,272 KB
testcase_23 AC 39 ms
52,392 KB
testcase_24 AC 40 ms
52,344 KB
testcase_25 AC 41 ms
51,896 KB
testcase_26 AC 40 ms
52,844 KB
testcase_27 AC 40 ms
53,056 KB
testcase_28 AC 40 ms
52,392 KB
testcase_29 AC 39 ms
52,612 KB
testcase_30 AC 40 ms
51,952 KB
testcase_31 AC 40 ms
53,804 KB
testcase_32 AC 40 ms
52,688 KB
testcase_33 AC 40 ms
52,264 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,K = map(int,input().split())
if K == 1:
    ans = 0
    ii = 0
    for i in range(N-2,0,-1):
        ans += i*2**ii
        ii += 1
    print(ans)
    exit()

ans = 2**(N-K)
print(ans)
0