結果
| 問題 | No.2614 Delete ABC |
| コンテスト | |
| ユーザー |
Appleorange
|
| 提出日時 | 2024-01-26 22:13:09 |
| 言語 | Python3 (3.14.3 + numpy 2.4.4 + scipy 1.17.1) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 123 bytes |
| 記録 | |
| コンパイル時間 | 839 ms |
| コンパイル使用メモリ | 20,696 KB |
| 実行使用メモリ | 15,488 KB |
| 最終ジャッジ日時 | 2026-04-15 00:40:37 |
| 合計ジャッジ時間 | 1,926 ms |
|
ジャッジサーバーID (参考情報) |
judge2_0 / judge1_1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | WA * 1 |
| other | WA * 2 |
ソースコード
t = int(input())
for _ in range(t):
n = int(input())
result = 'ABC' * n + 'ABA' * n + 'CAC'
print(result)
Appleorange