結果
| 問題 |
No.1732 ~サンプルはちゃんと見て!~ 16進数と8進数(2)
|
| コンテスト | |
| ユーザー |
kmjp
|
| 提出日時 | 2021-11-05 23:30:42 |
| 言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 1,430 bytes |
| コンパイル時間 | 2,105 ms |
| コンパイル使用メモリ | 199,084 KB |
| 最終ジャッジ日時 | 2025-01-25 13:52:00 |
|
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | WA * 1 |
| other | AC * 1 WA * 2 |
ソースコード
#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;
}
kmjp