結果

問題 No.1544 [Cherry 2nd Tune C] Synchroscope
ユーザー outlineoutline
提出日時 2021-06-11 21:33:23
言語 C++17(gcc12)
(gcc 12.3.0 + boost 1.87.0)
結果
AC  
実行時間 478 ms / 2,000 ms
コード長 1,706 bytes
コンパイル時間 1,487 ms
コンパイル使用メモリ 142,852 KB
実行使用メモリ 402,356 KB
最終ジャッジ日時 2024-12-14 22:33:31
合計ジャッジ時間 22,911 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 442 ms
341,544 KB
testcase_01 AC 430 ms
251,560 KB
testcase_02 AC 467 ms
378,184 KB
testcase_03 AC 391 ms
308,764 KB
testcase_04 AC 425 ms
402,356 KB
testcase_05 AC 360 ms
299,380 KB
testcase_06 AC 382 ms
296,640 KB
testcase_07 AC 478 ms
366,900 KB
testcase_08 AC 436 ms
355,368 KB
testcase_09 AC 392 ms
313,480 KB
testcase_10 AC 378 ms
304,056 KB
testcase_11 AC 404 ms
267,784 KB
testcase_12 AC 395 ms
360,272 KB
testcase_13 AC 336 ms
300,964 KB
testcase_14 AC 433 ms
346,588 KB
testcase_15 AC 371 ms
311,096 KB
testcase_16 AC 472 ms
363,832 KB
testcase_17 AC 389 ms
301,264 KB
testcase_18 AC 387 ms
349,480 KB
testcase_19 AC 460 ms
365,736 KB
testcase_20 AC 413 ms
290,096 KB
testcase_21 AC 465 ms
366,280 KB
testcase_22 AC 421 ms
331,844 KB
testcase_23 AC 392 ms
280,420 KB
testcase_24 AC 393 ms
280,420 KB
testcase_25 AC 391 ms
280,548 KB
testcase_26 AC 391 ms
280,416 KB
testcase_27 AC 391 ms
280,512 KB
testcase_28 AC 394 ms
280,420 KB
testcase_29 AC 392 ms
280,416 KB
testcase_30 AC 392 ms
280,544 KB
testcase_31 AC 396 ms
280,416 KB
testcase_32 AC 388 ms
280,420 KB
testcase_33 AC 414 ms
280,424 KB
testcase_34 AC 424 ms
251,556 KB
testcase_35 AC 453 ms
251,560 KB
testcase_36 AC 417 ms
284,080 KB
testcase_37 AC 426 ms
300,280 KB
testcase_38 AC 416 ms
319,504 KB
testcase_39 AC 415 ms
280,228 KB
testcase_40 AC 415 ms
300,292 KB
testcase_41 AC 412 ms
280,236 KB
testcase_42 AC 408 ms
298,764 KB
testcase_43 AC 403 ms
313,276 KB
testcase_44 AC 406 ms
314,312 KB
testcase_45 AC 410 ms
298,940 KB
testcase_46 AC 403 ms
314,144 KB
testcase_47 AC 408 ms
298,176 KB
権限があれば一括ダウンロードができます

ソースコード

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() < 30000000){
for(int i = 0; i < n; ++i) a.emplace_back(a[i]);
}
while(b.size() < 30000000){
for(int i = 0; i < m; ++i) b.emplace_back(b[i]);
}
for(int i = 0; i < 30000000; ++i){
if(a[i] == b[i]){
cout << i + 1 << endl;
return 0;
}
}
cout << -1 << endl;
return 0;
}
הההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההה
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
0