結果

問題 No.2098 [Cherry Alpha *] Introduction
ユーザー ooaiu
提出日時 2025-09-10 15:22:30
言語 C++23
(gcc 13.3.0 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 571 bytes
コンパイル時間 2,998 ms
コンパイル使用メモリ 275,232 KB
実行使用メモリ 7,716 KB
最終ジャッジ日時 2025-09-10 15:22:37
合計ジャッジ時間 4,231 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 6 WA * 7
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
int main() {
    std::ios_base::sync_with_stdio(false);
    std::cin.tie(nullptr);
    char A;
    cin >> A;
    switch (A) {
        case 'Z': {
            cout << "1th\n";
            break;
        }
        case 'B': {
            cout << "2th\n";
            break;
        }
        case 'S': {
            cout << "3th\n";
            break;
        }
        case 'E': {
            cout << "4th\n";
            break;
        }
        case 'D': {
            cout << "Alpha\n";
            break;
        }
    }
}
0