結果

問題 No.1692 Expectations
ユーザー ktr216ktr216
提出日時 2021-10-01 21:24:50
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 356 bytes
コンパイル時間 1,455 ms
コンパイル使用メモリ 170,580 KB
実行使用メモリ 12,672 KB
最終ジャッジ日時 2024-07-19 10:27:29
合計ジャッジ時間 2,840 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 1 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 1 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 51 ms
5,376 KB
testcase_11 AC 50 ms
5,376 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 10 ms
5,376 KB
testcase_15 AC 96 ms
8,576 KB
testcase_16 AC 10 ms
5,376 KB
testcase_17 AC 44 ms
6,528 KB
testcase_18 AC 18 ms
5,376 KB
testcase_19 AC 115 ms
9,344 KB
testcase_20 AC 92 ms
11,520 KB
testcase_21 AC 111 ms
12,672 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#define rep(i, l, r) for (int i = (l); i < (r); i++)
using namespace std;

typedef long long ll;

int main() {
    int N, M, A;
    cin >> N >> M;
    set<int> st;
    rep(i, 0, N) {
        cin >> A;
        st.insert(A);
    }
    cout << st.size() << " ";
    if (st.size() == 1) cout << 1 << endl;
    else cout << 0 << endl;
}
0