結果

問題 No.547 未知の言語
ユーザー a01sa01to
提出日時 2023-11-26 00:11:56
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 518 bytes
コンパイル時間 2,118 ms
コンパイル使用メモリ 194,688 KB
最終ジャッジ日時 2025-02-18 01:16:59
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 33
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#ifdef LOCAL
  #include "settings/debug.cpp"
  #define _GLIBCXX_DEBUG
#else
  #define Debug(...) void(0)
#endif
#define rep(i, n) for (int i = 0; i < (n); ++i)
using ll = long long;
using ull = unsigned long long;

int main() {
  int n;
  cin >> n;
  vector<string> s(n), t(n);
  rep(i, n) cin >> s[i];
  rep(i, n) cin >> t[i];
  rep(i, n) {
    if (s[i] != t[i]) {
      cout << i + 1 << endl
           << s[i] << endl
           << t[i] << endl;
    }
  }
  return 0;
}
0