結果

問題 No.1692 Expectations
ユーザー lyululyulu
提出日時 2021-10-01 21:25:03
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 254 bytes
コンパイル時間 430 ms
コンパイル使用メモリ 49,064 KB
実行使用メモリ 12,420 KB
最終ジャッジ日時 2023-09-26 16:21:41
合計ジャッジ時間 1,920 ms
ジャッジサーバーID
(参考情報)
judge14 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
4,380 KB
testcase_01 AC 1 ms
4,380 KB
testcase_02 AC 1 ms
4,380 KB
testcase_03 AC 1 ms
4,376 KB
testcase_04 AC 2 ms
4,376 KB
testcase_05 AC 2 ms
4,380 KB
testcase_06 AC 1 ms
4,376 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 1 ms
4,376 KB
testcase_10 WA -
testcase_11 AC 21 ms
4,376 KB
testcase_12 AC 2 ms
4,380 KB
testcase_13 AC 1 ms
4,376 KB
testcase_14 AC 7 ms
4,376 KB
testcase_15 AC 86 ms
8,272 KB
testcase_16 AC 7 ms
4,380 KB
testcase_17 AC 36 ms
6,224 KB
testcase_18 AC 14 ms
4,544 KB
testcase_19 AC 111 ms
9,028 KB
testcase_20 AC 68 ms
11,080 KB
testcase_21 AC 81 ms
12,420 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <stdio.h>
#include <set>

int main() {
    int n, m, in;
    scanf("%d %d", &n, &m);
    std::set<int> s;
    for(int i = 0; i < n; ++i) {
        scanf("%d", &in);
        s.insert(in);
    }
    printf("%ld %d\n", s.size(), 0);
    return 0;
}
0