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