結果
| 問題 | No.2614 Delete ABC |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2024-01-26 21:36:52 |
| 言語 | PyPy3 (7.3.23 + ACL) |
| 結果 |
WA
不安定
|
| 実行時間 | - |
| コード長 | 156 bytes |
| 記録 | |
| コンパイル時間 | 225 ms |
| コンパイル使用メモリ | 96,076 KB |
| 実行使用メモリ | 78,976 KB |
| 最終ジャッジ日時 | 2026-09-05 14:57:17 |
| 合計ジャッジ時間 | 1,501 ms |
|
ジャッジサーバーID (参考情報) |
judge1_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()