結果

問題 No.1904 Never giving up!
ユーザー hitonanodehitonanode
提出日時 2022-02-02 01:16:04
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 666 bytes
コンパイル時間 1,064 ms
コンパイル使用メモリ 105,260 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-06-07 02:22:26
合計ジャッジ時間 1,898 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 WA -
testcase_03 RE -
testcase_04 AC 2 ms
5,376 KB
testcase_05 RE -
testcase_06 RE -
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

// fixed なし
#include <cassert>
#include <iomanip>
#include <iostream>
#include <map>
#include <vector>
using namespace std;

int main() {
    int N;
    cin >> N;
    assert(1 <= N and N <= 20);

    double ret = 1;
    for (int i = 1; i <= N; ++i) ret *= i;
    map<int, int> counter;

    vector<int> A(N + 1);
    for (int i = 0; i < N; ++i) {
        cin >> A[i];
        counter[A[i]]++;
    }

    bool is_sorted = true;
    for (int i = 1; i < N; ++i) {
        if (A[i - 1] > A[i]) is_sorted = false;
    }
    assert(!is_sorted);

    for (auto [a, num_a] : counter) {
        for (int i = 1; i <= num_a; ++i) ret /= i;
    }
    cout << ret << '\n';
}
0