結果
問題 |
No.2098 [Cherry Alpha *] Introduction
|
ユーザー |
![]() |
提出日時 | 2024-05-04 18:14:36 |
言語 | C++23 (gcc 13.3.0 + boost 1.87.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 338 bytes |
コンパイル時間 | 3,221 ms |
コンパイル使用メモリ | 274,460 KB |
実行使用メモリ | 6,824 KB |
最終ジャッジ日時 | 2024-11-26 07:49:29 |
合計ジャッジ時間 | 3,900 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | WA * 13 |
ソースコード
#include <bits/stdc++.h> using namespace std; int main(){ string S; cin >> S; if(S == "Zelkova and Cherry") cout << "1st"; if(S == "BANNED CONTEST") cout << "2nd"; if(S == "Stray Bullet") cout << "3rd"; if(S == "Early Summer Rain") cout << "4th"; if(S == "Do you know Cherry Contest?") cout << "Alpha"; cout << endl; }