結果

問題 No.1544 [Cherry 2nd Tune C] Synchroscope
ユーザー outlineoutline
提出日時 2021-06-11 21:30:01
言語 C++17(gcc12)
(gcc 12.3.0 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 1,787 bytes
コンパイル時間 1,670 ms
コンパイル使用メモリ 142,300 KB
実行使用メモリ 300,016 KB
最終ジャッジ日時 2024-12-14 22:26:29
合計ジャッジ時間 10,178 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 121 ms
151,128 KB
testcase_04 AC 110 ms
171,544 KB
testcase_05 AC 119 ms
171,120 KB
testcase_06 AC 133 ms
208,120 KB
testcase_07 AC 98 ms
129,400 KB
testcase_08 AC 119 ms
148,560 KB
testcase_09 AC 110 ms
158,032 KB
testcase_10 AC 137 ms
210,432 KB
testcase_11 AC 69 ms
83,552 KB
testcase_12 AC 54 ms
77,512 KB
testcase_13 AC 56 ms
64,960 KB
testcase_14 AC 157 ms
174,472 KB
testcase_15 AC 167 ms
251,664 KB
testcase_16 AC 57 ms
74,108 KB
testcase_17 AC 37 ms
56,336 KB
testcase_18 AC 19 ms
19,840 KB
testcase_19 AC 20 ms
20,160 KB
testcase_20 AC 143 ms
222,316 KB
testcase_21 AC 49 ms
61,864 KB
testcase_22 AC 34 ms
45,496 KB
testcase_23 AC 451 ms
260,904 KB
testcase_24 AC 234 ms
260,900 KB
testcase_25 AC 231 ms
260,776 KB
testcase_26 AC 233 ms
260,904 KB
testcase_27 AC 236 ms
260,900 KB
testcase_28 AC 237 ms
260,900 KB
testcase_29 AC 236 ms
260,908 KB
testcase_30 AC 230 ms
260,904 KB
testcase_31 AC 234 ms
261,028 KB
testcase_32 AC 231 ms
260,904 KB
testcase_33 AC 263 ms
260,912 KB
testcase_34 AC 2 ms
6,816 KB
testcase_35 AC 2 ms
6,820 KB
testcase_36 WA -
testcase_37 AC 114 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