結果

問題 No.1692 Expectations
ユーザー chacoder1chacoder1
提出日時 2021-12-31 10:16:24
言語 C++17(gcc12)
(gcc 12.3.0 + boost 1.87.0)
結果
AC  
実行時間 123 ms / 2,000 ms
コード長 335 bytes
コンパイル時間 2,399 ms
コンパイル使用メモリ 207,140 KB
実行使用メモリ 13,568 KB
最終ジャッジ日時 2024-10-08 00:44:58
合計ジャッジ時間 3,801 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,820 KB
testcase_02 AC 2 ms
6,816 KB
testcase_03 AC 2 ms
6,820 KB
testcase_04 AC 2 ms
6,816 KB
testcase_05 AC 2 ms
6,816 KB
testcase_06 AC 2 ms
6,816 KB
testcase_07 AC 2 ms
6,816 KB
testcase_08 AC 2 ms
6,820 KB
testcase_09 AC 1 ms
6,816 KB
testcase_10 AC 51 ms
6,816 KB
testcase_11 AC 50 ms
6,816 KB
testcase_12 AC 2 ms
6,816 KB
testcase_13 AC 1 ms
6,820 KB
testcase_14 AC 10 ms
6,820 KB
testcase_15 AC 102 ms
9,344 KB
testcase_16 AC 11 ms
6,820 KB
testcase_17 AC 49 ms
7,040 KB
testcase_18 AC 21 ms
6,820 KB
testcase_19 AC 123 ms
10,240 KB
testcase_20 AC 85 ms
12,160 KB
testcase_21 AC 101 ms
13,568 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

signed main(){
  int n,m;cin>>n>>m;
  int a[n];
  map<int,int>mp;
  rep(i,n){
    cin>>a[i];
    mp[a[i]]++;
    
  }
  int ans1=mp.size();
  int ans2=0;
  if(mp.size()==1 && n==m) ans2=1;
  else ans2=0;

  cout<<ans1<<" "<<ans2<<endl;
  return 0;
}
0