結果

問題 No.1816 MUL-DIV Game
ユーザー 259_Momone259_Momone
提出日時 2022-01-21 23:10:53
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
RE  
実行時間 -
コード長 416 bytes
コンパイル時間 2,304 ms
コンパイル使用メモリ 199,864 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-05-04 14:35:21
合計ジャッジ時間 6,656 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 RE -
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 2 ms
6,944 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 2 ms
6,944 KB
testcase_06 RE -
testcase_07 RE -
testcase_08 RE -
testcase_09 AC 2 ms
6,940 KB
testcase_10 AC 2 ms
6,944 KB
testcase_11 AC 2 ms
6,940 KB
testcase_12 AC 2 ms
6,944 KB
testcase_13 RE -
testcase_14 RE -
testcase_15 RE -
testcase_16 RE -
testcase_17 RE -
testcase_18 RE -
testcase_19 RE -
testcase_20 RE -
testcase_21 RE -
testcase_22 RE -
testcase_23 RE -
testcase_24 RE -
testcase_25 RE -
testcase_26 AC 2 ms
6,944 KB
testcase_27 RE -
testcase_28 AC 2 ms
6,940 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;
    }
    abort();
    vector<unsigned long> A(N);
    for(auto&& i : A)cin >> i;
    sort(begin(A), end(A));
    cout << A[0] * A[1] << endl;
    return 0;
}
0