結果
| 問題 | No.2098 [Cherry Alpha *] Introduction |
| コンテスト | |
| ユーザー |
harurun
|
| 提出日時 | 2022-07-30 00:33:45 |
| 言語 | C++17 (gcc 15.2.0 + boost 1.90.0) |
| 結果 |
AC
|
| 実行時間 | 2 ms / 2,000 ms |
| コード長 | 346 bytes |
| 記録 | |
| コンパイル時間 | 733 ms |
| コンパイル使用メモリ | 79,744 KB |
| 実行使用メモリ | 6,400 KB |
| 最終ジャッジ日時 | 2026-06-26 21:26:22 |
| 合計ジャッジ時間 | 2,571 ms |
|
ジャッジサーバーID (参考情報) |
judge2_1 / judge3_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 13 |
ソースコード
#include <iostream>
using namespace std;
int main(){
string S;
getline(cin,S);
if(S=="Zelkova and Cherry"){
cout<<"1st"<<endl;
}else if(S=="BANNED CONTEST"){
cout<<"2nd"<<endl;
}else if(S=="Stray Bullet"){
cout<<"3rd"<<endl;
}else if(S=="Early Summer Rain"){
cout<<"4th"<<endl;
}else{
cout<<"Alpha"<<endl;
}
}
harurun