結果

問題 No.2098 [Cherry Alpha *] Introduction
ユーザー harurunharurun
提出日時 2022-07-30 00:33:45
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 13 ms / 2,000 ms
コード長 346 bytes
コンパイル時間 950 ms
コンパイル使用メモリ 68,212 KB
最終ジャッジ日時 2025-01-30 16:24:25
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 13
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
using namespace std;

int main(){
  string S;
  getline(cin,S);
  if(S=="Zelkova and Cherry"){
    cout<<"1st"<<endl;
  }else if(S=="BANNED CONTEST"){
    cout<<"2nd"<<endl;
  }else if(S=="Stray Bullet"){
    cout<<"3rd"<<endl;
  }else if(S=="Early Summer Rain"){
    cout<<"4th"<<endl;
  }else{
    cout<<"Alpha"<<endl;
  }
}
0