結果

問題 No.411 昇順昇順ソート
ユーザー rapurasurapurasu
提出日時 2016-08-13 00:01:44
言語 C++11
(gcc 13.3.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 724 bytes
コンパイル時間 1,219 ms
コンパイル使用メモリ 157,188 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-11-07 16:02:02
合計ジャッジ時間 2,217 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 4
other AC * 30
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
#define FOR(i,a,b) for (int i=(a);i<(b);i++)
#define RFOR(i,a,b) for (int i=(b)-1;i>=(a);i--)
#define REP(i,n) for (int i=0;i<(n);i++)
#define RREP(i,n) for (int i=(n)-1;i>=0;i--)
int main(){
	int N,K;
	cin>>N>>K;
/*
	if(N==2&&K==1){
	   cout<<0<<endl;
	   return 0;
	}
*/
        long long ans;
        long long count;
        if(K!=1){
           ans=1;
           count=1;
           for(int i=K+1;i<=N;i++){ 
              ans+=count;
              count*=2;
           }
        }else{
           ans=0;
           count=1;
           for(int i=K+1;i<=N;i++){
              ans+=count-1;
              count*=2;
           }
        }
        cout<<ans<<endl;
	return(0);
}
0