結果

問題 No.1692 Expectations
ユーザー umezoumezo
提出日時 2021-10-01 22:24:03
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 76 ms / 2,000 ms
コード長 437 bytes
コンパイル時間 2,034 ms
コンパイル使用メモリ 208,100 KB
実行使用メモリ 13,440 KB
最終ジャッジ日時 2024-07-19 12:10:31
合計ジャッジ時間 3,315 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 2 ms
6,944 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 2 ms
6,944 KB
testcase_07 AC 2 ms
6,940 KB
testcase_08 AC 2 ms
6,940 KB
testcase_09 AC 2 ms
6,940 KB
testcase_10 AC 18 ms
6,940 KB
testcase_11 AC 19 ms
6,940 KB
testcase_12 AC 2 ms
6,940 KB
testcase_13 AC 2 ms
6,944 KB
testcase_14 AC 8 ms
6,940 KB
testcase_15 AC 62 ms
8,960 KB
testcase_16 AC 7 ms
6,940 KB
testcase_17 AC 32 ms
6,944 KB
testcase_18 AC 13 ms
6,940 KB
testcase_19 AC 76 ms
9,984 KB
testcase_20 AC 61 ms
11,776 KB
testcase_21 AC 73 ms
13,440 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#define rep(i,n) for(int i=0;i<(int)(n);i++)
#define ALL(v) v.begin(),v.end()
typedef long long ll;
 
#include<bits/stdc++.h>
using namespace std;
 
int main(){
  ios::sync_with_stdio(false);
  std::cin.tie(nullptr);
  
  int n,m;
  cin>>n>>m;
  vector<int> A(n);
  rep(i,n) cin>>A[i];
  
  set<int> s;
  rep(i,n) s.insert(A[i]);
  
  cout<<s.size()<<" ";
  if(n==m && s.size()==1) cout<<1;
  else cout<<0;
  cout<<endl;
  
  return 0;
}
0