結果

問題 No.1544 [Cherry 2nd Tune C] Synchroscope
ユーザー root__786root__786
提出日時 2021-06-11 22:59:56
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,184 bytes
コンパイル時間 2,129 ms
コンパイル使用メモリ 204,572 KB
実行使用メモリ 462,052 KB
最終ジャッジ日時 2024-05-08 19:11:59
合計ジャッジ時間 48,655 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,812 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 1 ms
6,944 KB
testcase_03 AC 1,179 ms
433,048 KB
testcase_04 AC 826 ms
261,708 KB
testcase_05 AC 1,066 ms
422,264 KB
testcase_06 AC 1,071 ms
417,548 KB
testcase_07 AC 616 ms
226,172 KB
testcase_08 AC 1,089 ms
426,752 KB
testcase_09 AC 1,235 ms
447,896 KB
testcase_10 AC 1,120 ms
430,488 KB
testcase_11 AC 692 ms
239,324 KB
testcase_12 AC 481 ms
204,904 KB
testcase_13 AC 742 ms
250,888 KB
testcase_14 AC 1,274 ms
457,444 KB
testcase_15 AC 1,201 ms
443,304 KB
testcase_16 AC 584 ms
223,916 KB
testcase_17 AC 234 ms
108,952 KB
testcase_18 AC 173 ms
83,304 KB
testcase_19 AC 136 ms
75,492 KB
testcase_20 AC 993 ms
406,136 KB
testcase_21 AC 613 ms
225,660 KB
testcase_22 AC 309 ms
123,468 KB
testcase_23 AC 1,297 ms
461,640 KB
testcase_24 AC 1,319 ms
461,144 KB
testcase_25 AC 1,326 ms
461,020 KB
testcase_26 AC 1,302 ms
461,016 KB
testcase_27 AC 1,307 ms
461,012 KB
testcase_28 AC 1,318 ms
461,144 KB
testcase_29 AC 1,322 ms
461,144 KB
testcase_30 AC 1,299 ms
461,016 KB
testcase_31 AC 1,312 ms
461,148 KB
testcase_32 AC 1,301 ms
461,016 KB
testcase_33 WA -
testcase_34 AC 2 ms
6,940 KB
testcase_35 AC 2 ms
6,940 KB
testcase_36 AC 1,325 ms
460,972 KB
testcase_37 AC 3 ms
6,940 KB
testcase_38 AC 1,389 ms
461,068 KB
testcase_39 AC 1,364 ms
460,908 KB
testcase_40 AC 1,369 ms
460,936 KB
testcase_41 AC 1,372 ms
460,780 KB
testcase_42 AC 1,357 ms
457,796 KB
testcase_43 AC 1,305 ms
451,804 KB
testcase_44 AC 1,305 ms
452,820 KB
testcase_45 AC 1,344 ms
458,104 KB
testcase_46 AC 1,347 ms
456,172 KB
testcase_47 AC 1,330 ms
456,484 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <bits/stdc++.h>
using namespace std;
#define int long long
signed main() {
    int n,m;
    cin>>n>>m;
    int c=0;
    vector<int> a,b;
    int k;
    for(int i=0;i<n;i++){
        cin>>k;
        a.push_back(k);
    }
    for(int i=0;i<m;i++){
        cin>>k;
        b.push_back(k);
    }
    int same=0;
    for(int i=0;i<n;i++){
        for(int j=0;j<m;j++)
        {
            if(a[i]==b[j]){
                same=1;
                break;
            }
        }
        if(same==1)
        break;
    }
    if(same==0){
        cout<<-1<<endl;
        return 0;
    }
    else{
        int size=max({n*n,m*m,m*n});
        int i=0,c=0;
        vector<int> AA;
        while(i<n){
            if(c==size) break;
            AA.push_back(a[i]);
            i=(i+1)%n;
            c++;
        }
        vector<int> BB;
        int j=0;
        c=0;
        while(j<m){
            if(c==size) break;
            BB.push_back(b[j]);
            j=(j+1)%m;
            c++;
        }
        for(int i=0;i<AA.size();i++){
            if(AA[i]==BB[i]){
                cout<<(i+1);
                break;
            }
        }
    }
    return 0;
}
0