結果

問題 No.2599 Summer Project
ユーザー ぷら
提出日時 2024-01-12 21:28:38
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 833 bytes
コンパイル時間 1,293 ms
コンパイル使用メモリ 134,168 KB
最終ジャッジ日時 2025-02-18 17:43:02
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 4
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <string.h>
#include <algorithm>
#include <array>
#include <bitset>
#include <cassert>
#include <cfloat>
#include <climits>
#include <cmath>
#include <complex>
#include <ctime>
#include <deque>
#include <fstream>
#include <functional>
#include <iomanip>
#include <iostream>
#include <iterator>
#include <list>
#include <map>
#include <memory>
#include <queue>
#include <random>
#include <set>
#include <stack>
#include <string>
#include <unordered_map>
#include <unordered_set>
#include <utility>
#include <vector>
using namespace std;

int main() {
    ios::sync_with_stdio(false);
    cin.tie(nullptr);
    string s,t;
    cin >> s >> t;
    vector<string> a = {"watermelon","beachball","shrinebell"};
    for(int i = 0; i < 3; i++) {
        if(a[i] != s && a[i] != t) {
            cout << a[i] << "\n";
        }
    }
}
0