結果

問題 No.1544 [Cherry 2nd Tune C] Synchroscope
ユーザー zezerozezero
提出日時 2021-06-11 21:49:58
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 159 ms / 2,000 ms
コード長 581 bytes
コンパイル時間 3,060 ms
コンパイル使用メモリ 153,844 KB
実行使用メモリ 6,824 KB
最終ジャッジ日時 2024-12-14 23:10:42
合計ジャッジ時間 6,174 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 48
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <string>
#include <vector>
#include <algorithm>
#include <utility>
#include <map>
#include <set>
#include <queue>
#include <iomanip>
#include <cstring>
#include <atcoder/all>
using namespace std;
using namespace atcoder;
typedef long long ll;
#define rep(i,n) for (int i = 0; i < int(n);i++)

int main(){
	int n,m;
	cin >> n >> m;
	vector<int> a(n);
	vector<int> b(m);
	rep(i,n) cin >> a[i];
	rep(i,m) cin >> b[i];
	for (int i = 0; i < n*m;i++){
		if (a[i%n] == b[i%m]){
			cout << i+1 << endl;
			return 0;
		}
	}
	cout << -1 << endl;
	
  return 0;
}
0