結果
問題 | No.411 昇順昇順ソート |
ユーザー | kyuridenamida |
提出日時 | 2016-08-12 22:32:13 |
言語 | C++11 (gcc 13.3.0) |
結果 |
AC
|
実行時間 | 2 ms / 2,000 ms |
コード長 | 288 bytes |
コンパイル時間 | 1,235 ms |
コンパイル使用メモリ | 157,556 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-11-07 12:59:08 |
合計ジャッジ時間 | 2,241 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 4 |
other | AC * 30 |
ソースコード
#include <bits/stdc++.h> using namespace std; #define rep(i,n) for(int i = 0 ; i < (n) ; i++) #define int long long signed main(){ long long N,K; cin >> N >> K; long long v = (N-K); if( K == 1 ){ cout << (1 << (N - 1)) - N << endl; }else{ cout << (1ll<<v) << endl; } }