結果
| 問題 | No.1544 [Cherry 2nd Tune C] Synchroscope |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2021-06-11 21:40:57 |
| 言語 | Python3 (3.14.3 + numpy 2.4.4 + scipy 1.17.1) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 336 bytes |
| 記録 | |
| コンパイル時間 | 580 ms |
| コンパイル使用メモリ | 20,700 KB |
| 実行使用メモリ | 21,632 KB |
| 最終ジャッジ日時 | 2026-05-25 14:28:52 |
| 合計ジャッジ時間 | 27,786 ms |
|
ジャッジサーバーID (参考情報) |
judge3_1 / judge1_1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 1 WA * 22 TLE * 3 -- * 22 |
ソースコード
def gcd(x, y):
while y:
x, y = y, x%y
return x
def main():
N, M = map(int, input().split())
A = list(map(int, input().split()))
B = list(map(int, input().split()))
for i in range(N*M//gcd(N, M)):
if A[i%N] == B[i%M]:
print(i+1)
print("-1")
if __name__ == "__main__":
main()