結果
| 問題 | No.2614 Delete ABC |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2024-03-06 12:08:56 |
| 言語 | C++14 (gcc 15.2.0 + boost 1.89.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 185 bytes |
| 記録 | |
| コンパイル時間 | 1,629 ms |
| コンパイル使用メモリ | 179,532 KB |
| 実行使用メモリ | 6,400 KB |
| 最終ジャッジ日時 | 2026-04-16 01:23:47 |
| 合計ジャッジ時間 | 5,793 ms |
|
ジャッジサーバーID (参考情報) |
judge3_1 / judge1_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | WA * 1 |
| other | WA * 2 |
ソースコード
#include <bits/stdc++.h>
using namespace std;
int N;
int main() {
cin >> N;
string ans = "ABACBC";
for (int i = 1; i <= N - 2; i++) ans += "ABC";
cout << ans << endl;
return 0;
}