結果
問題 |
No.547 未知の言語
|
ユーザー |
|
提出日時 | 2024-04-01 22:50:13 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 442 bytes |
コンパイル時間 | 1,626 ms |
コンパイル使用メモリ | 168,588 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-09-30 22:40:30 |
合計ジャッジ時間 | 2,623 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | WA * 33 |
ソースコード
#include <bits/stdc++.h> using namespace std; using ll = long long; using vll=vector<long long>; int main() { ll n; cin>>n; vector<string> s(n),t(n); for(ll i=0;i!=n;i++){ cin>>s[i]; } for(ll i=0;i!=n;i++){ cin>>t[i]; } for(ll i=0;i!=n;i++){ if(s[i]!=t[i]){ cout<<i<<endl; cout<<s[i]<<endl; cout<<t[i]<<endl; } } system("pause"); }