結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 116 ms
151,300 KB
testcase_04 AC 109 ms
171,668 KB
testcase_05 AC 115 ms
171,116 KB
testcase_06 AC 135 ms
208,248 KB
testcase_07 AC 94 ms
129,532 KB
testcase_08 AC 119 ms
148,692 KB
testcase_09 AC 109 ms
158,028 KB
testcase_10 AC 132 ms
210,332 KB
testcase_11 AC 69 ms
83,544 KB
testcase_12 AC 55 ms
77,384 KB
testcase_13 AC 55 ms
65,084 KB
testcase_14 AC 156 ms
174,344 KB
testcase_15 AC 167 ms
251,660 KB
testcase_16 AC 60 ms
74,112 KB
testcase_17 AC 40 ms
56,464 KB
testcase_18 AC 20 ms
19,836 KB
testcase_19 AC 18 ms
20,168 KB
testcase_20 AC 142 ms
222,448 KB
testcase_21 AC 50 ms
61,988 KB
testcase_22 AC 34 ms
45,496 KB
testcase_23 AC 231 ms
261,036 KB
testcase_24 AC 233 ms
260,904 KB
testcase_25 AC 237 ms
260,908 KB
testcase_26 AC 228 ms
260,900 KB
testcase_27 AC 234 ms
260,904 KB
testcase_28 AC 231 ms
261,028 KB
testcase_29 AC 233 ms
261,032 KB
testcase_30 AC 233 ms
260,904 KB
testcase_31 AC 232 ms
261,160 KB
testcase_32 AC 231 ms
261,036 KB
testcase_33 AC 250 ms
260,908 KB
testcase_34 AC 2 ms
5,376 KB
testcase_35 AC 2 ms
5,376 KB
testcase_36 WA -
testcase_37 AC 117 ms
163,376 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];

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

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

    cout << -1 << endl;

    return 0;
}
0