結果

問題 No.1692 Expectations
ユーザー mmn15277198mmn15277198
提出日時 2021-10-03 01:32:56
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 143 ms / 2,000 ms
コード長 535 bytes
コンパイル時間 993 ms
コンパイル使用メモリ 100,860 KB
実行使用メモリ 13,440 KB
最終ジャッジ日時 2024-07-20 20:40:03
合計ジャッジ時間 2,659 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 3 ms
5,376 KB
testcase_06 AC 3 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 57 ms
5,376 KB
testcase_11 AC 56 ms
5,376 KB
testcase_12 AC 2 ms
5,376 KB
testcase_13 AC 2 ms
5,376 KB
testcase_14 AC 12 ms
5,376 KB
testcase_15 AC 117 ms
9,088 KB
testcase_16 AC 12 ms
5,376 KB
testcase_17 AC 55 ms
6,784 KB
testcase_18 AC 21 ms
5,376 KB
testcase_19 AC 143 ms
9,984 KB
testcase_20 AC 94 ms
11,904 KB
testcase_21 AC 112 ms
13,440 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function 'int main()':
main.cpp:28:24: warning: 'mn' may be used uninitialized [-Wmaybe-uninitialized]
   28 |   cout << mx << " " << mn << endl;
      |                        ^~
main.cpp:23:7: note: 'mn' was declared here
   23 |   int mn;
      |       ^~

ソースコード

diff #

#include <iostream>
#include <vector>
#include <algorithm>
#include <functional>
#include <queue>
#include <map>
#include <cmath>
#include <iomanip>
using namespace std;
int main() {
  int n , m;
  cin >> n >> m;
  vector<int> a(n);
  for (int i = 0; i < n; i++) {
    cin >> a[i];
  }
  int ans = 0;
  map<int,int> mp;
  for (int i = 0; i < n; i++) {
    mp[a[i]]++;
  }
  int mx = min((int)mp.size() , m);
  int mn;
  if (mp.size() == 1) {
    if (n >= m) mn = 1;
    else mn = 0;
  }
  cout << mx << " " << mn << endl;
  return 0;
}
0