結果
問題 | No.547 未知の言語 |
ユーザー |
|
提出日時 | 2017-11-02 07:50:20 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 2 ms / 2,000 ms |
コード長 | 364 bytes |
コンパイル時間 | 1,491 ms |
コンパイル使用メモリ | 167,888 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-06-26 02:52:51 |
合計ジャッジ時間 | 2,427 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 33 |
ソースコード
#include<bits/stdc++.h> #define rep(i,n) for(int i=0;i<(int)(n);i++) using namespace std; int main(){ int n; string s[10],t[10]; cin >> 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; cout << s[i] << endl; cout << t[i] << endl; } } }