結果

問題 No.2098 [Cherry Alpha *] Introduction
ユーザー Pocket7878Pocket7878
提出日時 2023-01-08 12:04:45
言語 C++17(clang)
(17.0.6 + boost 1.83.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 546 bytes
コンパイル時間 4,018 ms
コンパイル使用メモリ 128,528 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-05-09 04:44:16
合計ジャッジ時間 1,682 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 1 ms
5,376 KB
testcase_07 AC 1 ms
5,376 KB
testcase_08 AC 1 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 1 ms
5,376 KB
testcase_11 AC 2 ms
5,376 KB
testcase_12 AC 1 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <unordered_map>

using namespace std;

#define rep(i, n) for (int i = 0; i < (int)(n); i++)

int main() {
    unordered_map<string, string> contests = {
            {"Zelkova", "1st"},
            {"BANNED", "2nd"},
            {"Stray", "3rd"},
            {"Early", "4th"},
            {"Do", "Alpha"},
    };
    string s;
    cin >> s;
    auto ent = contests.find(s);
    if (ent != contests.end()) {
        cout << ent->second << endl;
    } else {
        cout << "Not found: '" << s << "'" << endl;
    }
}

0