답안 #337608

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
337608 2020-12-21T08:54:44 Z boykut Simple game (IZhO17_game) C++14
0 / 100
1 ms 364 KB
#include <bits/stdc++.h>

using namespace std;

signed main() {
   ios::sync_with_stdio(0);
   cin.tie(0);
   
   int n, m;
   cin >> n >> m;
   
   int h[n];
   
   for (int i = 0; i < n; i++) {
      cin >> h[i];
   }
   
   for (int test = m; test--;) {
      int x;
      cin >> x;
      
      if (x == 1) {
         int pos, val;
         cin >> pos >> val;
         h[pos - 1] = val;
      } else {
         int H;
         cin >> H;
         int ans = 0;
         for (int i = 0; i < n; i++) {
            if (h[i] >= H) ans++;
         }
         cout << ans << '\n';
      }
   }
   
   return 0;
}
# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 ms 364 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 ms 364 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 ms 364 KB Output isn't correct
2 Halted 0 ms 0 KB -