結果

問題 No.1732 ~サンプルはちゃんと見て!~ 16進数と8進数(2)
ユーザー 👑 kmjpkmjp
提出日時 2021-11-05 23:30:42
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,430 bytes
コンパイル時間 2,340 ms
コンパイル使用メモリ 200,816 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-04-24 07:27:32
合計ジャッジ時間 3,067 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
typedef signed long long ll;

#define _P(...) (void)printf(__VA_ARGS__)
#define FOR(x,to) for(x=0;x<(to);x++)
#define FORR(x,arr) for(auto& x:arr)
#define FORR2(x,y,arr) for(auto& [x,y]:arr)
#define ALL(a) (a.begin()),(a.end())
#define ZERO(a) memset(a,0,sizeof(a))
#define MINUS(a) memset(a,0xff,sizeof(a))
template<class T> bool chmax(T &a, const T &b) { if(a<b){a=b;return 1;}return 0;}
template<class T> bool chmin(T &a, const T &b) { if(a>b){a=b;return 1;}return 0;}
//-------------------------------------------------------


string S[3]={
	"",
	"BBCCCFACAC",
	"ACCACCCCCCCCABACAAFFE",
};

int T,N;

void solve() {
	int i,j,k,l,r,x,y; string s;
	
	string V="1234567";
	do {
		x=strtol(V.c_str(),NULL,8);
		stringstream ss;
		ss<<std::hex<<x;
		s=ss.str();
		
		int ok=1;
		FORR(c,s) {
			if(c<'a'||c>'f') ok=0;
			c+='A'-'a';
		}
		if(ok) S[0]=s;
	} while(next_permutation(ALL(V)));
	
	cin>>T;
	while(T--) {
		cin>>N;
		string R;
		for(x=0;x*21<=N;x++) for(y=0;x*21+y*10<=N;y++) if(R.empty()) {
			k=N-21*x-10*y;
			if(k%5) continue;
			k/=5;
			FOR(i,x) R+=S[2];
			FOR(i,y) R+=S[1];
			FOR(i,k) R+=S[0];
		}
		if(R=="") R="-1";
		cout<<R<<endl;
	}
	
}


int main(int argc,char** argv){
	string s;int i;
	if(argc==1) ios::sync_with_stdio(false), cin.tie(0);
	FOR(i,argc-1) s+=argv[i+1],s+='\n'; FOR(i,s.size()) ungetc(s[s.size()-1-i],stdin);
	cout.tie(0); solve(); return 0;
}
0