結果
問題 |
No.547 未知の言語
|
ユーザー |
![]() |
提出日時 | 2018-12-25 04:27:55 |
言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
結果 |
AC
|
実行時間 | 2 ms / 2,000 ms |
コード長 | 435 bytes |
コンパイル時間 | 507 ms |
コンパイル使用メモリ | 58,976 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-10-01 13:13:46 |
合計ジャッジ時間 | 1,551 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 33 |
ソースコード
#include <iostream> #include <algorithm> #include <cstdio> #include <string> #define ll long long using namespace std; int main(){ int N; cin>>N; string S[10],T[10]; for(int i=0;i<N;++i) cin>>S[i]; for(int i=0;i<N;++i) cin>>T[i]; for(int i=0;i<N;++i){ if(S[i]!=T[i]){ cout<<i+1<<endl; cout<<S[i]<<endl; cout<<T[i]<<endl; } } return 0; }