#38877: C++ 4 ms.


h3584935@gmail.com (高宇哲)

學校 : 不指定學校
編號 : 79959
來源 : [1.175.156.171]
最後登入時間 :
2024-02-12 22:31:37
m370. 1. 機械鼠 -- 2023年10月APCS | From: [101.12.43.250] | 發表日期 : 2023-12-30 16:31

#include using namespace std; int main() { int x, n; int left = 0, right = 0; int min = 101, max = -101; cin >> x >> n; for(int i = 0; i < n; i++) { int position; cin >> position; if(position <= x) left++; else right++; if(position < min) min = position; if(position > max) max = position; } if(left < right) { cout << right << " " << max; } else { cout << left << " " << min; } return 0; }

 
ZeroJudge Forum