結果

問題 No.1468 Colourful Pastel
ユーザー yicodeyicode
提出日時 2023-06-12 13:52:52
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 517 bytes
コンパイル時間 1,614 ms
コンパイル使用メモリ 177,024 KB
実行使用メモリ 9,608 KB
最終ジャッジ日時 2024-06-11 15:54:38
合計ジャッジ時間 3,077 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 WA -
testcase_05 AC 2 ms
5,376 KB
testcase_06 WA -
testcase_07 AC 1 ms
5,376 KB
testcase_08 AC 1 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 1 ms
5,376 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 2 ms
5,376 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 2 ms
5,376 KB
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 2 ms
5,376 KB
testcase_24 AC 2 ms
5,376 KB
testcase_25 AC 2 ms
5,376 KB
testcase_26 WA -
testcase_27 AC 71 ms
9,428 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll = long long;
using Graph = vector<vector<int>>;
int main() {
  int N; cin >> N;
  vector<string> A(N);
  vector<string> B(N - 1);
  for(int i = 0; i < N; i++) cin>> A[i];
  for(int i= 0; i < N - 1;i++) cin>> B[i];
  sort(A.begin(),A.end());
  sort(B.begin(),B.end());
  string ans = "";
  for(int i = 0; i < N - 1; i++) {
    if(A[i] != B[i]) {
      ans = A[i];
    }
  }
  if(ans == "") {
    cout << A[N -1] << endl;
    return 0;
  }
  cout << ans << endl;
}
0