結果
| 問題 | 
                            No.2098 [Cherry Alpha *] Introduction
                             | 
                    
| コンテスト | |
| ユーザー | 
                            👑  | 
                    
| 提出日時 | 2022-10-15 01:31:36 | 
| 言語 | C++17  (gcc 13.3.0 + boost 1.87.0)  | 
                    
| 結果 | 
                             
                                WA
                                 
                             
                            
                         | 
                    
| 実行時間 | - | 
| コード長 | 292 bytes | 
| コンパイル時間 | 637 ms | 
| コンパイル使用メモリ | 66,668 KB | 
| 最終ジャッジ日時 | 2025-02-08 05:51:56 | 
| 
                            ジャッジサーバーID (参考情報)  | 
                        judge4 / judge2 | 
(要ログイン)
| ファイルパターン | 結果 | 
|---|---|
| other | AC * 11 WA * 2 | 
ソースコード
#include <iostream>
using namespace std;
int main(){
    string s;cin>>s;
    if(s[0] == 'Z')cout << "1st" << endl;
    else if(s[0] == 'B')cout << "2st" << endl;
    else if(s[0] == 'S')cout << "3rd" << endl;
    else if(s[0] == 'E')cout << "4th" << endl;
    else cout << "Alpha" << endl;
}