結果
| 問題 |
No.2599 Summer Project
|
| コンテスト | |
| ユーザー |
momoyuu
|
| 提出日時 | 2024-01-13 13:47:03 |
| 言語 | C++23 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
AC
|
| 実行時間 | 2 ms / 2,000 ms |
| コード長 | 373 bytes |
| コンパイル時間 | 1,161 ms |
| コンパイル使用メモリ | 93,276 KB |
| 実行使用メモリ | 5,376 KB |
| 最終ジャッジ日時 | 2024-09-28 01:22:18 |
| 合計ジャッジ時間 | 1,451 ms |
|
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 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","shrinebell"};
for(int i = 0;i<3;i++){
if(now[i]==s||now[i]==t) continue;
cout<<now[i]<<endl;
}
}
momoyuu