結果

問題 No.2929 Miracle Branch
ユーザー Nzt3Nzt3
提出日時 2024-10-20 12:44:22
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 32 ms / 2,000 ms
コード長 880 bytes
コンパイル時間 2,816 ms
コンパイル使用メモリ 205,068 KB
実行使用メモリ 6,824 KB
最終ジャッジ日時 2024-10-20 12:44:33
合計ジャッジ時間 9,871 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4 ms
6,812 KB
testcase_01 AC 4 ms
6,820 KB
testcase_02 AC 4 ms
6,820 KB
testcase_03 AC 4 ms
6,820 KB
testcase_04 AC 4 ms
6,820 KB
testcase_05 AC 4 ms
6,820 KB
testcase_06 AC 4 ms
6,820 KB
testcase_07 AC 4 ms
6,820 KB
testcase_08 AC 4 ms
6,816 KB
testcase_09 AC 4 ms
6,816 KB
testcase_10 AC 4 ms
6,820 KB
testcase_11 AC 4 ms
6,816 KB
testcase_12 AC 4 ms
6,820 KB
testcase_13 AC 4 ms
6,820 KB
testcase_14 AC 4 ms
6,820 KB
testcase_15 AC 4 ms
6,820 KB
testcase_16 AC 4 ms
6,816 KB
testcase_17 AC 4 ms
6,820 KB
testcase_18 AC 4 ms
6,816 KB
testcase_19 AC 5 ms
6,816 KB
testcase_20 AC 5 ms
6,820 KB
testcase_21 AC 5 ms
6,816 KB
testcase_22 AC 4 ms
6,824 KB
testcase_23 AC 6 ms
6,820 KB
testcase_24 AC 11 ms
6,816 KB
testcase_25 AC 5 ms
6,816 KB
testcase_26 AC 4 ms
6,820 KB
testcase_27 AC 4 ms
6,820 KB
testcase_28 AC 5 ms
6,816 KB
testcase_29 AC 4 ms
6,820 KB
testcase_30 AC 5 ms
6,816 KB
testcase_31 AC 4 ms
6,820 KB
testcase_32 AC 4 ms
6,820 KB
testcase_33 AC 5 ms
6,820 KB
testcase_34 AC 29 ms
6,816 KB
testcase_35 AC 29 ms
6,820 KB
testcase_36 AC 4 ms
6,820 KB
testcase_37 AC 29 ms
6,820 KB
testcase_38 AC 29 ms
6,816 KB
testcase_39 AC 29 ms
6,824 KB
testcase_40 AC 32 ms
6,820 KB
testcase_41 AC 29 ms
6,816 KB
testcase_42 AC 30 ms
6,816 KB
testcase_43 AC 30 ms
6,820 KB
testcase_44 AC 29 ms
6,820 KB
testcase_45 AC 4 ms
6,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
using ll=long long;
constexpr int MOD=998244353;
#define rep(i,n) for(int i=0;i<(int)(n);i++)
#define rep2(i,l,r) for(int i=(l);i<(int)(r);i++)
#define all(v) v.begin(),v.end()

constexpr int MAX_D=200000;
int main(){
  ios::sync_with_stdio(false);
  cin.tie(nullptr);
  ll X;
  cin>>X;
  vector d(0,0ll);
  rep2(i,3,MAX_D){
    while(X%i==0){
      d.push_back(i);
      X/=i;
    }
  }
  if(X!=1)d.push_back(X);
  if(d.empty())d.push_back(1);
  ll s=accumulate(all(d),0ll);
  if(s+d.size()>MAX_D){
    cout<<"-1\n";
    return 0;
  }
  cout<<s+d.size()<<'\n';
  rep(i,d.size()-1){
    cout<<i+1<<' '<<i+2<<'\n';
  }
  int cnt=d.size();
  rep(i,d.size()){
    rep(j,d[i]){
      cnt++;
      cout<<i+1<<' '<<cnt<<'\n';
    }
  }
  rep(i,d.size()){
    if(i)cout<<' ';
    cout<<'b';
  }
  rep(i,s){
    cout<<" g";
  }
  cout<<'\n';
}
0