結果
問題 | No.2599 Summer Project |
ユーザー | shojin |
提出日時 | 2024-05-02 17:23:48 |
言語 | C++23(gcc13) (gcc 13.2.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 3 ms / 2,000 ms |
コード長 | 223 bytes |
コンパイル時間 | 5,241 ms |
コンパイル使用メモリ | 280,928 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-05-02 17:23:55 |
合計ジャッジ時間 | 6,329 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | AC | 3 ms
5,376 KB |
testcase_05 | AC | 3 ms
5,376 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; int main(){ string S, T; cin >> S >> T; unordered_set<string> st = {"watermelon", "beachball", "shrinebell"}; st.erase(S); st.erase(T); cout << *st.begin(); }