結果
| 問題 | No.2098 [Cherry Alpha *] Introduction |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2022-10-14 21:27:44 |
| 言語 | C++14 (gcc 15.2.0 + boost 1.89.0) |
| 結果 |
AC
|
| 実行時間 | 1 ms / 2,000 ms |
| コード長 | 485 bytes |
| 記録 | |
| コンパイル時間 | 667 ms |
| コンパイル使用メモリ | 117,192 KB |
| 実行使用メモリ | 7,716 KB |
| 最終ジャッジ日時 | 2026-03-13 05:56:00 |
| 合計ジャッジ時間 | 1,231 ms |
|
ジャッジサーバーID (参考情報) |
judge2_0 / judge3_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 13 |
ソースコード
#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;
}