結果

問題 No.501 穴と文字列
コンテスト
ユーザー mint
提出日時 2026-09-02 15:21:03
言語 C++17
(gcc 15.3.0 + boost 1.92.0)
コンパイル:
g++-15 -O2 -lm -std=c++17 -Wuninitialized -DONLINE_JUDGE -o a.out _filename_
実行:
./a.out
結果
AC  
実行時間 1 ms / 2,000 ms
+ 973µs
コード長 509 bytes
記録
記録タグの例:
初AC ショートコード 純ショートコード 純主流ショートコード 最速実行時間
コンパイル時間 1,014 ms
コンパイル使用メモリ 213,016 KB
実行使用メモリ 9,744 KB
最終ジャッジ日時 2026-09-02 15:21:06
合計ジャッジ時間 2,887 ms
ジャッジサーバーID
(参考情報)
judge1_0 / judge2_0
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 22
権限があれば一括ダウンロードができます

ソースコード

diff #
raw source code

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

int main(){
  ios::sync_with_stdio(false);
  cin.tie(0);
  int n, d; cin >> n >> d;
  if(n == d) for(int i = 0; i < n; ++i) cout << "A";
  else if(n < d){
    if(n*2 == d) for(int i = 0; i < n; ++i) cout << "B";
    else{
      for(int i = 0; i < n-(d%n); ++i) cout << "A";
      for(int i = 0; i < (d%n); ++i) cout << "B";
    }
  }else{
    for(int i = 0; i < d; ++i) cout << "A";
    for(int i = 0; i < n-d; ++i) cout << "C";
  }
  cout << '\n';
  return 0;
}
0