結果

問題 No.820 Power of Two
ユーザー 259_Momone
提出日時 2019-04-26 21:51:36
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 140 bytes
コンパイル時間 1,503 ms
コンパイル使用メモリ 165,508 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-11-25 03:17:49
合計ジャッジ時間 1,995 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 9 WA * 1
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;

int main(){
    unsigned long N, K;
    cin >> N >> K;
    cout << (1LL << (N - K)) << endl;
}
0