結果
問題 | No.2614 Delete ABC |
ユーザー | ryohei22 |
提出日時 | 2024-01-26 21:28:34 |
言語 | PyPy3 (7.3.15) |
結果 |
RE
|
実行時間 | - |
コード長 | 172 bytes |
コンパイル時間 | 224 ms |
コンパイル使用メモリ | 82,176 KB |
実行使用メモリ | 64,768 KB |
最終ジャッジ日時 | 2024-09-28 07:40:14 |
合計ジャッジ時間 | 947 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | RE | - |
testcase_01 | RE | - |
testcase_02 | RE | - |
ソースコード
a = 'ABACBC' b = 'ABACABCBC' for _ in range(int(input())): N = int(input()) ans = '' if N % 2 == 0: ans = a * N//2 else: ans = a * (N - 3)//2 + b print(ans)