結果

問題 No.2519 Coins in Array
ユーザー GOTKAKOGOTKAKO
提出日時 2023-10-27 22:28:53
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,712 bytes
コンパイル時間 2,101 ms
コンパイル使用メモリ 207,572 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-09-25 14:31:40
合計ジャッジ時間 8,228 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 2 ms
6,944 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 2 ms
6,940 KB
testcase_07 AC 2 ms
6,940 KB
testcase_08 AC 2 ms
6,944 KB
testcase_09 AC 2 ms
6,940 KB
testcase_10 AC 2 ms
6,940 KB
testcase_11 AC 1 ms
6,940 KB
testcase_12 AC 2 ms
6,944 KB
testcase_13 WA -
testcase_14 AC 2 ms
6,944 KB
testcase_15 AC 2 ms
6,944 KB
testcase_16 WA -
testcase_17 AC 2 ms
6,940 KB
testcase_18 AC 2 ms
6,944 KB
testcase_19 AC 2 ms
6,940 KB
testcase_20 AC 2 ms
6,940 KB
testcase_21 AC 2 ms
6,940 KB
testcase_22 AC 2 ms
6,940 KB
testcase_23 AC 270 ms
6,944 KB
testcase_24 AC 271 ms
6,940 KB
testcase_25 AC 2 ms
6,940 KB
testcase_26 AC 2 ms
6,940 KB
testcase_27 AC 262 ms
6,944 KB
testcase_28 AC 271 ms
6,940 KB
testcase_29 AC 261 ms
6,940 KB
testcase_30 AC 240 ms
6,940 KB
testcase_31 AC 42 ms
6,944 KB
testcase_32 AC 134 ms
6,940 KB
testcase_33 AC 191 ms
6,940 KB
testcase_34 AC 92 ms
6,948 KB
testcase_35 AC 174 ms
6,944 KB
testcase_36 AC 70 ms
6,944 KB
testcase_37 AC 32 ms
6,940 KB
testcase_38 AC 142 ms
6,940 KB
testcase_39 AC 81 ms
6,940 KB
testcase_40 AC 261 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

int main(){
    ios_base::sync_with_stdio(false);
    cin.tie(nullptr);

    int N; cin >> N;
    vector<long long> A(N);
    for(auto &a : A) cin >> a;
    if(N == 2){
        bool zero = false;
        if(gcd(A.at(0),A.at(1)) != 1 || A.at(0) == 0 || A.at(1) == 0) cout << 0 << endl;
        else cout << (A.at(0)-1)*(A.at(1)-1) << endl;
        cout << "1 2" << endl;
    }
    else if(N == 3){
        if(A.at(0)%2 == 0 || A.at(1)%2 == 0 || A.at(2)%2 == 0){
            cout << 0 << endl << "1 2" << endl << "1 2" << endl;
        }
        else{
            long long ans = 8e18,left = -1;
            for(auto &a : A) a--;
            for(int i=0; i<3; i++){
                long long now = (A.at(i)*A.at((i+1)%3)-1)*(A.at((i+2)%3));
                if(now < ans) ans = now,left = (i+2)%3;
            }
            if(ans < 0) ans = 0;
            cout << ans << endl;
            bool space = false;
            for(int i=0; i<3; i++){
                if(i == left) continue;
                if(space) cout << " ";
                cout << i+1; space = true;
            }
            cout << endl;
            cout << "1 2" << endl;
        }
    }
    else{
        cout << 0 << endl;
        vector<int> odd,even;
        for(int i=0; i<N; i++){
            if(A.at(i)%2) odd.push_back(i+1);
            else even.push_back(i+1); 
        }
        if(even.size() >= 2){
            cout << even.at(0) << " " << even.at(1) << endl;
            N -= 1;
        }
        else{
            cout << "1 2" << endl << "1 2" << endl;
            N -= 2;
        }

        while(N != 1){
            cout << "1 " << N << endl;
            N--; 
        }
    }
}
0