結果

問題 No.501 穴と文字列
ユーザー kosakkunkosakkun
提出日時 2017-04-07 23:00:31
言語 C++11
(gcc 13.3.0)
結果
AC  
実行時間 4 ms / 2,000 ms
コード長 1,119 bytes
コンパイル時間 712 ms
コンパイル使用メモリ 82,356 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-12-14 16:24:41
合計ジャッジ時間 1,508 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 22
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <string>
#include <vector>
#include <queue>
#include <stack>
#include <map>
#include <algorithm>
#include <sstream>
#include <cmath>
#include <set>
#include <iomanip>
#include <deque>
#include <stdio.h>
using namespace std;

#define REP(i,n) for(int (i)=0;(i)<(int)(n);(i)++)
#define RREP(i,n) for(int (i)=(int)(n)-1;i>=0;i--)
#define FILL(Itr,n) fill((Itr).begin(),(Itr).end(),n)
#define REMOVE(Itr,n) (Itr).erase(remove((Itr).begin(),(Itr).end(),n),(Itr).end())
#define UNIQUE(Itr) sort((Itr).begin(),(Itr).end()); (Itr).erase(unique((Itr).begin(),(Itr).end()),(Itr).end())
#define LBOUND(Itr,val) lower_bound((Itr).begin(),(Itr).end(),(val))
#define UBOUND(Itr,val) upper_bound((Itr).begin(),(Itr).end(),(val))
#define MOD 1000000007
typedef long long ll;
typedef pair<int,int> P;


int main(){
    
    int N,D; cin>>N>>D;
    if(D==0)REP(i,N)cout<<'C';
    else{
        if(D<=N){
            REP(i,D)cout<<'A';
            REP(s,N-D)cout<<'C';
        }else{
            REP(i,2*N-D)cout<<'A';
            REP(i,D-N)cout<<'B';
        }
    }
    
    cout<<endl;
    
    return 0;
}
0