結果
| 問題 | No.2614 Delete ABC |
| コンテスト | |
| ユーザー |
mint
|
| 提出日時 | 2026-09-02 14:29:02 |
| 言語 | C++17 (gcc 15.3.0 + boost 1.92.0) |
| 結果 |
AC
|
| 実行時間 | 1 ms / 2,000 ms |
| + 359µs | |
| コード長 | 271 bytes |
| 記録 | |
| コンパイル時間 | 1,192 ms |
| コンパイル使用メモリ | 208,612 KB |
| 実行使用メモリ | 9,720 KB |
| 最終ジャッジ日時 | 2026-09-02 14:29:12 |
| 合計ジャッジ時間 | 2,223 ms |
|
ジャッジサーバーID (参考情報) |
judge3_0 / judge1_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 1 |
| other | AC * 2 |
ソースコード
#include <bits/stdc++.h>
using namespace std;
int main(){
ios::sync_with_stdio(false);
cin.tie(0);
int t; cin >> t;
while(t--){
int n; cin >> n;
for(int i = 0; i < n/2; ++i) cout << "ABACBC";
if(n&1) cout << "ABC";
cout << '\n';
}
return 0;
}
mint