結果
| 問題 |
No.2098 [Cherry Alpha *] Introduction
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2022-12-02 13:22:57 |
| 言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
AC
|
| 実行時間 | 2 ms / 2,000 ms |
| コード長 | 425 bytes |
| コンパイル時間 | 1,966 ms |
| コンパイル使用メモリ | 192,968 KB |
| 最終ジャッジ日時 | 2025-02-09 03:09:36 |
|
ジャッジサーバーID (参考情報) |
judge5 / judge5 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 13 |
ソースコード
#include<bits/stdc++.h>
using namespace std;
using ll = long long;
#define fi first
#define se second
#define all(a) a.begin(),a.end()
int main(){
string s;
getline(cin,s);
if(s=="Zelkova and Cherry") cout << "1st\n";
if(s=="BANNED CONTEST") cout << "2nd\n";
if(s=="Stray Bullet") cout << "3rd\n";
if(s=="Early Summer Rain") cout << "4th\n";
if(s=="Do you know Cherry Contest?") cout << "Alpha\n";
return 0;
}