結果

問題 No.547 未知の言語
ユーザー cwwcww
提出日時 2017-08-27 15:26:30
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 306 ms / 2,000 ms
コード長 757 bytes
コンパイル時間 2,005 ms
コンパイル使用メモリ 173,076 KB
実行使用メモリ 394,496 KB
最終ジャッジ日時 2024-06-26 02:41:54
合計ジャッジ時間 13,461 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 302 ms
394,368 KB
testcase_01 AC 302 ms
394,368 KB
testcase_02 AC 301 ms
394,496 KB
testcase_03 AC 306 ms
394,240 KB
testcase_04 AC 300 ms
394,240 KB
testcase_05 AC 298 ms
394,240 KB
testcase_06 AC 299 ms
394,240 KB
testcase_07 AC 300 ms
394,368 KB
testcase_08 AC 304 ms
394,240 KB
testcase_09 AC 298 ms
394,240 KB
testcase_10 AC 300 ms
394,368 KB
testcase_11 AC 298 ms
394,240 KB
testcase_12 AC 299 ms
394,240 KB
testcase_13 AC 298 ms
394,368 KB
testcase_14 AC 301 ms
394,240 KB
testcase_15 AC 304 ms
394,368 KB
testcase_16 AC 301 ms
394,240 KB
testcase_17 AC 300 ms
394,368 KB
testcase_18 AC 301 ms
394,240 KB
testcase_19 AC 299 ms
394,240 KB
testcase_20 AC 300 ms
394,368 KB
testcase_21 AC 299 ms
394,368 KB
testcase_22 AC 296 ms
394,240 KB
testcase_23 AC 299 ms
394,368 KB
testcase_24 AC 298 ms
394,368 KB
testcase_25 AC 300 ms
394,496 KB
testcase_26 AC 301 ms
394,240 KB
testcase_27 AC 299 ms
394,368 KB
testcase_28 AC 298 ms
394,368 KB
testcase_29 AC 298 ms
394,240 KB
testcase_30 AC 299 ms
394,368 KB
testcase_31 AC 298 ms
394,368 KB
testcase_32 AC 298 ms
394,368 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#define REP(i,n) for(int i=0; i<(n); i++)
#define REP2(i,x,n) for(int i=x; i<(n); i++)
#define ALL(n) begin(n),end(n)
#define SORT(x) sort((x).begin(),(x).end(),greater<int>())
using LL=long long;
using ULL=unsigned long long;
using PII=pair<int,int>;
const int INF = numeric_limits<int>::max();
struct cww{cww(){ios::sync_with_stdio(false);cin.tie(0);}}star;
vector<vector<int>> memo( 10000 + 1, vector<int>( 10000 + 1, -1 ) );
int main()
{
	int N;
	cin >> N;
	vector<string> S(N), T(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;
		}
	}
	return 0;
}
0