×
解除綁定,重新設定系統帳號的密碼
您的系統帳號 ID:
您的系統帳號:
您的帳號暱稱:
設定新密碼:
設定新密碼:
×
請輸入要加入的「課程代碼」
請向開設課程的使用者索取「課程代碼」
分類題庫
解題動態
排行榜
討論區
競賽區
登入
註冊
發表新討論
#38004:
qqazwwsxeedcrrfvttgb@gmail.com
(Jackis666)
學校 : 嘉義市私立輔仁高級中學
編號 : 226198
×
傳送站內訊息
傳給:
主題:
內容:
來源 : [163.27.10.239]
最後登入時間 :
2024-11-08 11:12:07
m370.
1. 機械鼠
--
2023年10月
APCS
| From: [114.137.72.158] | 發表日期 : 2023-10-22 18:21
位置差距:
include "bits/stdc++.h"
using namespace std;
int main(){
int x,n;
while(cin>>x>>n){
int ptr[n];
for(int i=0;i<n;i++)
cin>>ptr[i];
sort(ptr,ptr+n);
int low=0,high=0;
for(int i=0;i<n;i++){
if(ptr[i]<x)
low++;
else
high++;
}
if(low>high){
cout<<low<<" "<<ptr[0]-x;
}
else
cout<<high<<" "<<ptr[n-1]-x;
}
}
末位置:
include "bits/stdc++.h"
using namespace std;
int main(){
int x,n;
while(cin>>x>>n){
int ptr[n];
for(int i=0;i<n;i++)
cin>>ptr[i];
sort(ptr,ptr+n);
int low=0,high=0;
for(int i=0;i<n;i++){
if(ptr[i]<x)
low++;
else
high++;
}
if(low>high){
cout<<low<<" "<<ptr[0];
}
else
cout<<high<<" "<<ptr[n-1];
}
}
ZeroJudge Forum