結果
| 問題 |
No.2599 Summer Project
|
| コンテスト | |
| ユーザー |
momoyuu
|
| 提出日時 | 2024-01-13 13:46:27 |
| 言語 | C++23 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 372 bytes |
| コンパイル時間 | 978 ms |
| コンパイル使用メモリ | 93,532 KB |
| 実行使用メモリ | 5,376 KB |
| 最終ジャッジ日時 | 2024-09-28 01:22:16 |
| 合計ジャッジ時間 | 1,545 ms |
|
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | WA * 2 |
| other | WA * 4 |
ソースコード
#include<iostream>
#include<vector>
#include<algorithm>
using namespace std;
using ll = long long;
int main(){
cin.tie(nullptr);
ios::sync_with_stdio(false);
string s,t;
cin>>s>>t;
string now[] = {"watermelon","beachball","shrinbell"};
for(int i = 0;i<3;i++){
if(now[i]==s||now[i]==t) continue;
cout<<now[i]<<endl;
}
}
momoyuu