結果
問題 | No.2614 Delete ABC |
ユーザー | startcpp |
提出日時 | 2023-12-17 02:10:53 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 265 bytes |
コンパイル時間 | 548 ms |
コンパイル使用メモリ | 63,848 KB |
実行使用メモリ | 6,940 KB |
最終ジャッジ日時 | 2024-09-27 11:06:30 |
合計ジャッジ時間 | 987 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
ソースコード
#include <iostream> using namespace std; int main() { int T; cin >> T; while (T--) { int n; cin >> n; for (int i = 0; i < n / 2; i++) cout << "ABC"; cout << "ABACBC"; for (int i = 0; i < (n + 1) / 2; i++) cout << "ABC"; cout << endl; } return 0; }