#38023: C++簡單明瞭


magickent07@gmail.com (鄭畇溥C++)

學校 : 國立臺南高級工業職業學校
編號 : 236929
來源 : [118.232.99.232]
最後登入時間 :
2024-09-21 14:50:29
m370. 1. 機械鼠 -- 2023年10月APCS | From: [180.217.143.77] | 發表日期 : 2023-10-22 21:54

#include <iostream>
using namespace std;

int main() {
  int x, n;
  cin >> x >> n;
  int a[n];
  int b = 0; 
  int c = 0; 
  int B = x; 
  int C = x; 
  int tempB = 0;
  int tempC = 0;
  for (int i = 0; i < n; i++) {
    cin >> a[i];
    if (a[i] > x) 
    {
      b += 1;
      tempB = a[i];
      if (tempB > B) {
        B = tempB;
      }
    } else if (a[i] < x) 
    {
      c += 1;
      tempC = a[i];
      if (tempC < C) {
        C = tempC;
      }
    }
  }
  if (b > c) {
    cout << b << " " << B << endl;
  } else {
    cout << c << " " << C << endl;
  }
}

 
ZeroJudge Forum