結果

問題 No.2098 [Cherry Alpha *] Introduction
ユーザー harurun
提出日時 2022-07-28 10:58:40
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 330 bytes
コンパイル時間 980 ms
コンパイル使用メモリ 66,932 KB
最終ジャッジ日時 2025-01-30 14:38:28
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 3 WA * 10
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
using namespace std;

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