結果
問題 | No.2929 Miracle Branch |
ユーザー | yel_ow |
提出日時 | 2024-11-24 02:56:34 |
言語 | C++23 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,533 bytes |
コンパイル時間 | 2,783 ms |
コンパイル使用メモリ | 252,052 KB |
実行使用メモリ | 6,824 KB |
最終ジャッジ日時 | 2024-11-24 02:56:44 |
合計ジャッジ時間 | 8,434 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,248 KB |
testcase_02 | AC | 2 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 | 2 ms
5,248 KB |
testcase_29 | AC | 2 ms
5,248 KB |
testcase_30 | AC | 1 ms
5,248 KB |
testcase_31 | AC | 2 ms
5,248 KB |
testcase_32 | AC | 2 ms
5,248 KB |
testcase_33 | AC | 1 ms
5,248 KB |
testcase_34 | WA | - |
testcase_35 | WA | - |
testcase_36 | AC | 1 ms
5,248 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 | AC | 2 ms
5,248 KB |
ソースコード
//#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 <= 100; 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; }