#44253: cpp answer


1121226@stu.wghs.tp.edu.tw (Arthur1121226)

學校 : 臺北市私立薇閣高級中學
編號 : 252772
來源 : [60.248.154.139]
最後登入時間 :
2024-11-18 14:48:11
f373. 週年慶 Anniversary -- TOI 練習賽202010新手組1 | From: [60.248.154.139] | 發表日期 : 2024-11-18 13:02

#include <bits/stdc++.h>
using namespace std;
int main(){
  int N;
  cin>>N;
  int price_0=N;
  int price_1=N;
  if(N>=2000){
    price_0=N-(N/2000)*200;
  }
  if(N>=1000){
    price_1=N-(N/1000)*100;
  }
  if(price_0<=price_1){
    cout<<price_0<<" 0"<<endl;
  }
  else{
    cout<<price_1<<" 1"<<endl;
  }
}
 
ZeroJudge Forum