結果
問題 | No.2929 Miracle Branch |
ユーザー | umezo |
提出日時 | 2024-10-12 16:58:12 |
言語 | C++23 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,203 bytes |
コンパイル時間 | 2,998 ms |
コンパイル使用メモリ | 253,208 KB |
実行使用メモリ | 6,748 KB |
最終ジャッジ日時 | 2024-10-12 16:58:54 |
合計ジャッジ時間 | 10,705 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | WA | - |
testcase_02 | AC | 5 ms
5,248 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | AC | 4 ms
5,248 KB |
testcase_29 | AC | 5 ms
5,248 KB |
testcase_30 | AC | 5 ms
5,248 KB |
testcase_31 | AC | 5 ms
5,248 KB |
testcase_32 | AC | 4 ms
5,248 KB |
testcase_33 | AC | 7 ms
6,628 KB |
testcase_34 | WA | - |
testcase_35 | WA | - |
testcase_36 | AC | 7 ms
6,496 KB |
testcase_37 | WA | - |
testcase_38 | WA | - |
testcase_39 | WA | - |
testcase_40 | WA | - |
testcase_41 | WA | - |
testcase_42 | WA | - |
testcase_43 | WA | - |
testcase_44 | WA | - |
testcase_45 | WA | - |
ソースコード
#define rep(i,n) for(int i=0;i<(int)(n);i++) #define ALL(v) v.begin(),v.end() typedef long long ll; #include <bits/stdc++.h> using namespace std; template <class T> using V=vector<T>; template <class T> using VV=V<V<T>>; int main(){ ios::sync_with_stdio(false); std::cin.tie(nullptr); ll x; cin>>x; if(x==1){ cout<<2<<endl; cout<<1<<" "<<2<<endl; cout<<"b g"<<endl; return 0; } V<ll> A; V<ll> isprime(200200,1); isprime[0]=0,isprime[1]=0; for(int i=2;i<200200;i++){ if(isprime[i]==0) continue; for(int j=2*i;j<200200;j+=i) isprime[j]=0; while(x%i==0){ A.push_back(i); x/=i; } } if(x>1){ cout<<-1<<endl; return 0; } int a=A.size(); vector<int> U,V; int now=a; rep(i,a){ rep(j,A[i]){ now++; U.push_back(i+1),V.push_back(now); } } for(int i=1;i<a-1;i++) U.push_back(i),V.push_back(i+1); int u=U.size(); if(u>200000){ cout<<-1<<endl; return 0; } cout<<u<<'\n'; rep(i,u) cout<<U[i]<<" "<<V[i]<<'\n'; vector<char> C(now); rep(i,a) C[i]='b'; for(int i=a;i<now;i++) C[i]='g'; rep(i,now){ if(i) cout<<" "; cout<<C[i]; } cout<<'\n'; return 0; }