結果

問題 No.501 穴と文字列
ユーザー kosakkun
提出日時 2017-04-07 22:35:05
言語 C++11(廃止可能性あり)
(gcc 13.3.0)
結果
WA  
実行時間 -
コード長 1,066 bytes
コンパイル時間 675 ms
コンパイル使用メモリ 82,444 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-07-16 01:04:20
合計ジャッジ時間 1,240 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 15 WA * 7
権限があれば一括ダウンロードができます

ソースコード

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)cout<<'C';
    else{
        if(d<=n)REP(i,n)cout<<'A';
        else{
            int s = d - n;
            REP(i,n-s)cout<<'A';
            REP(i,s)cout<<'B';
        }
    }
    
    return 0;
}
0