#40399: c++ answer


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

學校 : 臺北市私立薇閣高級中學
編號 : 252772
來源 : [60.248.154.139]
最後登入時間 :
2024-11-04 13:24:52
b762. 英國聯蒙 | From: [60.248.154.139] | 發表日期 : 2024-05-17 12:47

#include <iostream>
#include <string>
using namespace std;
int main() {
  int n,assist=0,die=0,kill=0,kills=0;
  cin>>n;
  for (int i=0;i<n;i++){
    string s;
    cin>>s;
    if (s=="Get_Kill"){
      kill+=1;
      kills+=1;
      if (kill>=8){
        cout<<"LEGENDARY!"<<endl;
      }
      else if (kill==7){
        cout<<"GUALIKE!"<<endl;
      }
      else if (kill==6){
        cout<<"DOMINATING!"<<endl;
      }
      else if (kill==5){
        cout<<"UNSTOPPABLE!"<<endl;
      }
      else if (kill==4){
        cout<<"RAMPAGE~"<<endl;
      }
      else if (kill==3){
        cout<<"KILLING SPREE!"<<endl;
      }
      else if (kill<3){
        cout<<"You have slain an enemie."<<endl;
      }
    }
    else if (s=="Get_Assist"){
      assist+=1;
    }
    else if (s=="Die"){
      die+=1;
      if (kill>=3){
        cout<<"SHUTDOWN."<<endl;
      }
      else if (kill<3){
        cout<<"You have been slained."<<endl;
      }
      kill=0;
    }
  }
  cout<<kills<<"/"<<die<<"/"<<assist;
  return 0;
}

 
ZeroJudge Forum