結果
| 問題 |
No.547 未知の言語
|
| コンテスト | |
| ユーザー |
Kura
|
| 提出日時 | 2019-02-17 22:12:55 |
| 言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
| 結果 |
AC
|
| 実行時間 | 2 ms / 2,000 ms |
| コード長 | 379 bytes |
| コンパイル時間 | 543 ms |
| コンパイル使用メモリ | 59,732 KB |
| 実行使用メモリ | 5,248 KB |
| 最終ジャッジ日時 | 2024-10-01 21:40:24 |
| 合計ジャッジ時間 | 1,707 ms |
|
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 33 |
ソースコード
#include<iostream>
#include<vector>
#include<string>
using namespace std;
int main(){
int N;
cin>>N;
vector<string> S(N);
for(int i=0;i<N;i++){
cin>>S[i];
}
string T;
for(int i=0;i<N;i++){
cin>>T;
if(S[i]!=T){
N=i+1;
break;
}
}
cout<<N<<endl;
cout<<S[N-1]<<endl;
cout<<T<<endl;
}
Kura