結果

問題 No.1732 ~サンプルはちゃんと見て!~ 16進数と8進数(2)
ユーザー eve__fuyukieve__fuyuki
提出日時 2024-11-11 17:53:55
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 701 bytes
コンパイル時間 2,565 ms
コンパイル使用メモリ 202,508 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-11-11 17:54:00
合計ジャッジ時間 4,044 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 2 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

void fast_io() {
	ios_base::sync_with_stdio(false);
	cin.tie(nullptr);
}
string ans_5 = "ABDCC";
string ans_10 = "BBCCCFACAC";
string ans_21 = "ACCACCCCCCCCABACAAFFE";
void solve() {
	int n;
	cin >> n;
	if (n % 21 == 5) {
		cout << ans_5;
		for (int i = 0; i < n / 21; i++) {
			cout << ans_21;
		}
		cout << endl;
	} else if (n % 21 == 10) {
		cout << ans_10;
		for (int i = 0; i < n / 21; i++) {
			cout << ans_21;
		}
		cout << endl;
	} else if (n % 21 == 0) {
		for (int i = 0; i < n / 21; i++) {
			cout << ans_21;
		}
		cout << endl;
	} else {
		cout << -1 << endl;
	}
}
int main() {
	fast_io();

	int t;
	cin >> t;
	for (; t--;) {
		solve();
	}
}
0