結果
問題 | No.2599 Summer Project |
ユーザー | Vansh Sharma |
提出日時 | 2024-01-12 21:36:10 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,156 bytes |
コンパイル時間 | 1,808 ms |
コンパイル使用メモリ | 200,404 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-09-27 21:31:37 |
合計ジャッジ時間 | 2,200 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 2 ms
5,248 KB |
testcase_02 | WA | - |
testcase_03 | AC | 1 ms
5,376 KB |
testcase_04 | WA | - |
testcase_05 | WA | - |
ソースコード
#include "bits/stdc++.h" using namespace std; #define max(a, b) (a < b ? b : a) #define min(a, b) ((a > b) ? b : a) #define mod 1e9 + 7 #define FOR(a, c) for (int(a) = 0; (a) < (c); (a)++) #define FORL(a, b, c) for (int(a) = (b); (a) <= (c); (a)++) #define FORR(a, b, c) for (int(a) = (b); (a) >= (c); (a)--) #define INF 1000000000000000003 typedef long long int ll; typedef vector<int> vi; typedef pair<int, int> pi; #define F first #define S second #define PB push_back #define POB pop_back #define MP make_pair void solve(){ string s,t; cin>>s>>t; if((s=="beachball" && t=="watermelon") || (s=="watermelon" && t=="beachball")){ cout<<"shrine bell"<<endl; } else if((s=="watermelon" && t=="shrine bell") ||(s=="shrine bell" && t=="watermelon")){ cout<<"beachball"<<endl; } else{ cout<<"watermelon"<<endl; } } int main() { ios::sync_with_stdio(0); cin.tie(0); #ifndef ONLINE_JUDGE freopen("input.txt", "r", stdin); freopen("output.txt", "w", stdout); #endif // ONLINE_JUDGE int T=1; // cin >> T; while (T--) { solve(); } return 0; }