답안 #715035

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
715035 2023-03-25T21:19:23 Z ELc0421 Kamenčići (COCI21_kamencici) C++14
0 / 70
0 ms 212 KB
#include <iostream>
using namespace std;

int main() {
  int n, k, reds = 0;
  cin >> n >> k;
  for (int i = 0; i < n; i++) {
    int pebble;
    cin >> pebble;
    if (pebble = 1) {
      reds++;
    }
  }
  if (reds >= k) {
    cout << "Auntun wins!";
    
  } else {
    cout << "Branka wins!";
  }
  return 0;
}

Compilation message

Main.cpp: In function 'int main()':
Main.cpp:10:16: warning: suggest parentheses around assignment used as truth value [-Wparentheses]
   10 |     if (pebble = 1) {
      |         ~~~~~~~^~~
# 결과 실행 시간 메모리 Grader output
1 Incorrect 0 ms 212 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 0 ms 212 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 0 ms 212 KB Output isn't correct
2 Halted 0 ms 0 KB -