結果

問題 No.1544 [Cherry 2nd Tune C] Synchroscope
ユーザー outlineoutline
提出日時 2021-06-11 21:32:27
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,706 bytes
コンパイル時間 1,888 ms
コンパイル使用メモリ 141,916 KB
実行使用メモリ 158,624 KB
最終ジャッジ日時 2024-05-08 17:01:16
合計ジャッジ時間 6,840 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 97 ms
115,936 KB
testcase_01 AC 121 ms
107,900 KB
testcase_02 AC 80 ms
128,232 KB
testcase_03 AC 88 ms
105,088 KB
testcase_04 AC 91 ms
137,748 KB
testcase_05 AC 96 ms
149,708 KB
testcase_06 AC 88 ms
148,008 KB
testcase_07 AC 82 ms
124,532 KB
testcase_08 AC 91 ms
120,656 KB
testcase_09 AC 89 ms
158,072 KB
testcase_10 AC 87 ms
152,712 KB
testcase_11 AC 87 ms
130,908 KB
testcase_12 AC 84 ms
129,368 KB
testcase_13 AC 88 ms
141,456 KB
testcase_14 AC 80 ms
117,596 KB
testcase_15 AC 97 ms
156,720 KB
testcase_16 AC 82 ms
123,336 KB
testcase_17 AC 88 ms
150,920 KB
testcase_18 AC 85 ms
127,248 KB
testcase_19 AC 82 ms
130,500 KB
testcase_20 AC 89 ms
143,944 KB
testcase_21 AC 83 ms
124,248 KB
testcase_22 AC 76 ms
112,640 KB
testcase_23 AC 74 ms
102,144 KB
testcase_24 AC 75 ms
102,180 KB
testcase_25 AC 73 ms
102,176 KB
testcase_26 AC 74 ms
102,440 KB
testcase_27 AC 74 ms
102,180 KB
testcase_28 AC 75 ms
102,180 KB
testcase_29 AC 76 ms
102,308 KB
testcase_30 AC 74 ms
102,312 KB
testcase_31 AC 77 ms
102,308 KB
testcase_32 AC 75 ms
102,312 KB
testcase_33 AC 84 ms
102,184 KB
testcase_34 AC 117 ms
107,900 KB
testcase_35 AC 125 ms
107,904 KB
testcase_36 AC 101 ms
140,560 KB
testcase_37 AC 97 ms
102,268 KB
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
testcase_41 WA -
testcase_42 WA -
testcase_43 WA -
testcase_44 WA -
testcase_45 WA -
testcase_46 WA -
testcase_47 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <algorithm>
#include <cmath>
#include <queue>
#include <string>
#include <map>
#include <set>
#include <stack>
#include <tuple>
#include <deque>
#include <array>
#include <numeric>
#include <bitset>
#include <iomanip>
#include <cassert>
#include <chrono>
#include <random>
#include <limits>
#include <iterator>
#include <functional>
#include <sstream>
#include <fstream>
#include <complex>
#include <cstring>
#include <unordered_map>
#include <unordered_set>
using namespace std;

#pragma GCC optimize("O3")
#pragma GCC optimize("unroll-loops")
#pragma GCC target("sse,sse2,sse3,ssse3,sse4,popcnt,abm,mmx,avx,avx2,tune=native")
#pragma GCC target("avx512f,avx512dq,avx512cd,avx512bw,avx512vl")

using ll = long long;
constexpr int INF = 1001001001;
// constexpr int mod = 1000000007;
constexpr int mod = 998244353;

template<class T>
inline bool chmax(T& x, T y){
    if(x < y){
        x = y;
        return true;
    }
    return false;
}
template<class T>
inline bool chmin(T& x, T y){
    if(x > y){
        x = y;
        return true;
    }
    return false;
}

int main(){
    ios::sync_with_stdio(false);
    cin.tie(nullptr);

    int n, m;
    cin >> n >> m;
    vector<int> a(n), b(m);
    for(int i = 0; i < n; ++i)  cin >> a[i];
    for(int i = 0; i < m; ++i)  cin >> b[i];

    while(a.size() < 10000000){
        for(int i = 0; i < n; ++i)  a.emplace_back(a[i]);
    }
    while(b.size() < 10000000){
        for(int i = 0; i < m; ++i)  b.emplace_back(b[i]);
    }

    for(int i = 0; i < 10000000; ++i){
        if(a[i] == b[i]){
            cout << i + 1 << endl;
            return 0;
        }
    }

    cout << -1 << endl;

    return 0;
}
0