結果

問題 No.2929 Miracle Branch
ユーザー yel_owyel_ow
提出日時 2024-11-24 02:57:11
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,536 bytes
コンパイル時間 2,799 ms
コンパイル使用メモリ 251,384 KB
実行使用メモリ 9,600 KB
最終ジャッジ日時 2024-11-24 02:57:26
合計ジャッジ時間 13,250 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 4 ms
5,248 KB
testcase_02 AC 4 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 AC 6 ms
5,248 KB
testcase_19 AC 7 ms
5,248 KB
testcase_20 AC 10 ms
5,248 KB
testcase_21 AC 17 ms
5,248 KB
testcase_22 WA -
testcase_23 AC 29 ms
5,248 KB
testcase_24 AC 96 ms
5,248 KB
testcase_25 WA -
testcase_26 AC 5 ms
5,248 KB
testcase_27 AC 5 ms
5,248 KB
testcase_28 AC 4 ms
5,248 KB
testcase_29 AC 4 ms
5,248 KB
testcase_30 AC 4 ms
5,248 KB
testcase_31 AC 4 ms
5,248 KB
testcase_32 AC 4 ms
5,248 KB
testcase_33 AC 4 ms
5,248 KB
testcase_34 AC 320 ms
9,404 KB
testcase_35 AC 307 ms
9,600 KB
testcase_36 AC 4 ms
5,248 KB
testcase_37 AC 298 ms
9,584 KB
testcase_38 AC 312 ms
9,580 KB
testcase_39 AC 306 ms
9,472 KB
testcase_40 AC 303 ms
9,556 KB
testcase_41 AC 305 ms
9,472 KB
testcase_42 AC 310 ms
9,600 KB
testcase_43 AC 308 ms
9,460 KB
testcase_44 AC 309 ms
9,440 KB
testcase_45 AC 4 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

//#include <monsterenergy>
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
#define all(x) (x).begin(), (x).end()
#define rall(x) (x).rbegin(), (x).rend()
const int MAX = 1e9;
const int MIN = -1*1e9;
const ll MAXLL = 1e18;
const ll MINLL = -1*1e18;

int main()
{
    ll X,Count=0; cin >> X;
    if(X == 1)
    {
    	cout << 2 << endl;
    	cout << 1 << " " << 2 << endl;
    	cout << "b g" << endl; 
    	return 0;
    }
    if(X == 4)
    {
    	cout << 5 << endl;
    	cout << 1 << " " << 2 << endl;
    	cout << 1 << " " << 3 << endl;
    	cout << 1 << " " << 4 << endl;
    	cout << 1 << " " << 5 << endl;
    	cout << "b g g g g" << endl; 
    	return 0;
    }
    vector<int> Ans;
    for(ll i = 2; i <= 200000; i++)
    {
        int c = 0;
        while(X%i == 0)
        {
            c++;
            X/=i;
            Ans.push_back(i);
        }
        Count += (i+1)*c;
    }
    if(X != 1 || 200000 < Count)
    {
        cout << -1 << endl;
        return 0;
    }
    vector<string> Color(Count+1);
    cout << Count << endl;
    int used = 1, save = -1;
    for(int i = 0; i < Ans.size(); i++)
    {
        Color[used] = "b";
        for(int j = 1; j <= Ans[i]; j++)
        {
            cout << used << " " << used+j << endl;
            Color[used+j] = "g";
        }
        if(save != -1) cout << save << " " << used << endl;
        save = used;
        used += Ans[i]+1;
    }
    for(int i = 1; i <= Count; i++)
    {
        cout << Color[i] << " ";
    }
    cout << endl;
    return 0;
}
0