結果

問題 No.1816 MUL-DIV Game
ユーザー 259_Momone259_Momone
提出日時 2022-01-21 22:24:27
言語 C++17(gcc12)
(gcc 12.3.0 + boost 1.87.0)
結果
TLE  
実行時間 -
コード長 755 bytes
コンパイル時間 2,376 ms
コンパイル使用メモリ 207,468 KB
実行使用メモリ 12,800 KB
最終ジャッジ日時 2024-11-26 00:59:26
合計ジャッジ時間 19,814 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
12,064 KB
testcase_01 AC 2 ms
10,148 KB
testcase_02 AC 2 ms
12,068 KB
testcase_03 AC 2 ms
10,624 KB
testcase_04 AC 2 ms
10,496 KB
testcase_05 AC 2 ms
12,416 KB
testcase_06 AC 2 ms
10,496 KB
testcase_07 AC 2 ms
12,416 KB
testcase_08 TLE -
testcase_09 AC 2 ms
5,248 KB
testcase_10 AC 2 ms
5,248 KB
testcase_11 AC 2 ms
5,248 KB
testcase_12 AC 2 ms
5,248 KB
testcase_13 AC 50 ms
6,144 KB
testcase_14 AC 27 ms
5,248 KB
testcase_15 TLE -
testcase_16 AC 9 ms
5,248 KB
testcase_17 TLE -
testcase_18 RE -
testcase_19 AC 33 ms
5,504 KB
testcase_20 TLE -
testcase_21 TLE -
testcase_22 AC 19 ms
5,248 KB
testcase_23 AC 2 ms
5,248 KB
testcase_24 AC 2 ms
5,248 KB
testcase_25 RE -
testcase_26 AC 2 ms
5,248 KB
testcase_27 RE -
testcase_28 AC 2 ms
5,248 KB
testcase_29 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

int main(){
    using namespace std;
    unsigned long N;
    cin >> N;
    if(N & 1){
        if(N == 1){
            unsigned long A;
            cin >> A;
            cout << A << endl;
        }else puts("1");
        return 0;
    }
    set<unsigned long> pq(istream_iterator<unsigned long>{cin}, istream_iterator<unsigned long>{});
    for(unsigned long i{}; i < N; i += 2){
        unsigned long a{*begin(pq)};
        pq.erase(begin(pq));
        unsigned long b{*begin(pq)};
        pq.erase(begin(pq));
        pq.emplace(a * b);
        if(i + 2 < N){
            pq.erase(prev(end(pq)));
            pq.erase(prev(end(pq)));
            pq.emplace(1);
        }
    }
    cout << *pq.begin() << endl;
    return 0;
}
0