結果

問題 No.2098 [Cherry Alpha *] Introduction
ユーザー nystnyst
提出日時 2022-10-14 21:27:44
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 485 bytes
コンパイル時間 980 ms
コンパイル使用メモリ 104,736 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-06-26 13:08:58
合計ジャッジ時間 1,545 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 13
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <iomanip>
#include <algorithm>
#include <map>
#include <cmath>
#include <bitset>
#include <string>
#include <queue>
using namespace std;

int main(){
    map<string,string> mp ={
        {"Zelkova and Cherry","1st"},
        {"BANNED CONTEST","2nd"},
        {"Stray Bullet","3rd"},
        {"Early Summer Rain","4th"},
        {"Do you know Cherry Contest?","Alpha"}
    };

    string s;
    getline(cin,s);
    cout << mp[s] << endl;
}
0