結果
問題 |
No.1544 [Cherry 2nd Tune C] Synchroscope
|
ユーザー |
|
提出日時 | 2021-06-11 21:40:57 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
WA
|
実行時間 | - |
コード長 | 336 bytes |
コンパイル時間 | 309 ms |
コンパイル使用メモリ | 12,672 KB |
実行使用メモリ | 22,784 KB |
最終ジャッジ日時 | 2024-12-14 22:54:28 |
合計ジャッジ時間 | 82,293 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 4 WA * 21 TLE * 23 |
ソースコード
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()