結果

問題 No.2098 [Cherry Alpha *] Introduction
ユーザー LV3zJigVW57oPGyLV3zJigVW57oPGy
提出日時 2022-11-02 15:54:50
言語 C++11
(gcc 13.3.0)
結果
WA  
実行時間 -
コード長 424 bytes
コンパイル時間 1,376 ms
コンパイル使用メモリ 160,040 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-07-17 05:05:36
合計ジャッジ時間 2,067 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 3 WA * 10
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h> 
using namespace std;
#include <ios>
#include <iomanip>
#include <iostream>
#include <string>
#include <algorithm>


int main(){
  string a;
  cin >>a;
  if("Zelkova and Cherry"==a){
    cout <<"1st";
  }
  else if("BANNED CONTEST"==a){
    cout<<"2st";
  }
  else if("Stray Bullet"==a){
    cout <<"3st";
  }
  else if("Early Summer kain"==a){
   cout <<"4st";
  }
  else{
    cout <<"Alpha";
  }
}
0