結果
問題 | No.1544 [Cherry 2nd Tune C] Synchroscope |
ユーザー |
![]() |
提出日時 | 2024-12-02 00:07:26 |
言語 | C++23 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 155 ms / 2,000 ms |
コード長 | 512 bytes |
コンパイル時間 | 2,760 ms |
コンパイル使用メモリ | 247,060 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-12-02 00:07:33 |
合計ジャッジ時間 | 6,126 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 48 |
ソースコード
#include <bits/stdc++.h> using namespace std; #ifdef LOCAL #include "settings/debug.cpp" #else #define Debug(...) void(0) #endif #define rep(i, n) for (int i = 0; i < (n); ++i) using ll = long long; using ull = unsigned long long; int main() { int n, m; cin >> n >> m; vector<int> a(n), b(m); rep(i, n) cin >> a[i]; rep(i, m) cin >> b[i]; int l = lcm(n, m); rep(i, l) { if (a[i % n] == b[i % m]) { cout << i + 1 << endl; return 0; } } cout << -1 << endl; return 0; }