結果
| 問題 | No.547 未知の言語 |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2019-07-28 01:06:28 |
| 言語 | C++17 (gcc 13.3.0 + boost 1.89.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 288 bytes |
| 記録 | |
| コンパイル時間 | 2,064 ms |
| コンパイル使用メモリ | 193,572 KB |
| 最終ジャッジ日時 | 2025-01-07 09:43:54 |
|
ジャッジサーバーID (参考情報) |
judge3 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | WA * 33 |
ソースコード
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
int main() {
int n;
cin >> n;
string s[2*n];
for (int i = 0; i < 2*n; i++) cin >> s[i];
for (int i = 0; i < n; i++)
if (s[i] != s[i+n]) cout << s[i] << endl << s[i+n] << endl;
return 0;
}