結果
問題 | No.2098 [Cherry Alpha *] Introduction |
ユーザー | nao109 |
提出日時 | 2022-12-02 13:22:57 |
言語 | C++17(gcc12) (gcc 12.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 2 ms / 2,000 ms |
コード長 | 425 bytes |
コンパイル時間 | 2,222 ms |
コンパイル使用メモリ | 200,860 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-10-09 16:00:47 |
合計ジャッジ時間 | 2,756 ms |
ジャッジサーバーID (参考情報) |
judge3 / 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;}