結果
| 問題 |
No.2098 [Cherry Alpha *] Introduction
|
| コンテスト | |
| ユーザー |
NAMIDAIRO
|
| 提出日時 | 2022-10-15 13:15:48 |
| 言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
AC
|
| 実行時間 | 2 ms / 2,000 ms |
| コード長 | 560 bytes |
| コンパイル時間 | 976 ms |
| コンパイル使用メモリ | 109,036 KB |
| 実行使用メモリ | 6,944 KB |
| 最終ジャッジ日時 | 2024-06-26 19:43:18 |
| 合計ジャッジ時間 | 1,644 ms |
|
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 13 |
ソースコード
#include <iostream>
#include <vector>
#include <algorithm>
#include <map>
#include <queue>
#include <set>
#include <random>
#include <iomanip>
using namespace std;
typedef long long ll;
#define rep(i, n) for(int i = 0; i < (n); i++)
template<class T>
using vi = vector<T>;
template<class T>
using vii = vector<vi<T>>;
template<class T>
using viii = vector<vii<T>>;
int main()
{
map<char, string> mp;
mp['Z'] = "1st";
mp['B'] = "2nd";
mp['S'] = "3rd";
mp['E'] = "4th";
mp['D'] = "Alpha";
string s;
cin >> s;
cout << mp[s[0]] << endl;
return 0;
}
NAMIDAIRO