Advertisement
Ilya_konstantinov

9.5D

Nov 30th, 2023
166
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.46 KB | Source Code | 0 0
  1. #include <iostream>
  2. #include <vector>
  3. #include "func_d.h"
  4. // Я надеюсь, к этому моменту вы уже не смотрите мой код
  5. // И я могу с чистой совестью писать его для души
  6. using std::cin; using std::cout;
  7. using std::vector;
  8. using std::endl;
  9.  
  10. int main() {
  11.     int n; cin >> n;
  12.     vector<int> v(n);
  13.     for (int &el : v) cin >> el;
  14.     for (int &el : v) cout << count(v, el) << ' ';
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement