結果
| 問題 | No.2614 Delete ABC |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2024-01-26 21:36:52 |
| 言語 | PyPy3 (7.3.17) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 156 bytes |
| 記録 | |
| コンパイル時間 | 359 ms |
| コンパイル使用メモリ | 85,496 KB |
| 実行使用メモリ | 54,500 KB |
| 最終ジャッジ日時 | 2026-04-15 00:27:50 |
| 合計ジャッジ時間 | 1,083 ms |
|
ジャッジサーバーID (参考情報) |
judge3_0 / judge2_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | WA * 1 |
| other | WA * 2 |
ソースコード
def solve():
T = int(input().strip())
for _ in range(T):
N = int(input().strip())
S = 'ABA' * N + 'C' * N
print(S)
solve()