結果

問題 No.186 中華風 (Easy)
ユーザー H3PO4H3PO4
提出日時 2020-05-25 21:05:06
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 405 bytes
コンパイル時間 75 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 10,752 KB
最終ジャッジ日時 2024-10-13 02:12:55
合計ジャッジ時間 4,228 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 165 ms
10,624 KB
testcase_01 AC 80 ms
10,752 KB
testcase_02 AC 85 ms
10,496 KB
testcase_03 AC 30 ms
10,624 KB
testcase_04 AC 160 ms
10,752 KB
testcase_05 AC 148 ms
10,624 KB
testcase_06 AC 217 ms
10,624 KB
testcase_07 AC 176 ms
10,752 KB
testcase_08 AC 257 ms
10,624 KB
testcase_09 AC 251 ms
10,624 KB
testcase_10 AC 205 ms
10,624 KB
testcase_11 AC 307 ms
10,624 KB
testcase_12 AC 101 ms
10,496 KB
testcase_13 AC 115 ms
10,752 KB
testcase_14 AC 126 ms
10,624 KB
testcase_15 AC 38 ms
10,624 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 60 ms
10,752 KB
testcase_19 AC 178 ms
10,752 KB
testcase_20 AC 71 ms
10,752 KB
testcase_21 AC 150 ms
10,624 KB
testcase_22 AC 164 ms
10,496 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import gcd

X1, Y1 = map(int, input().split())
X2, Y2 = map(int, input().split())
X3, Y3 = map(int, input().split())


def solve(n, div_num, mod_num, add_num):
    for _ in range(div_num):
        if n % div_num == mod_num:
            return n
        n += add_num
    else:
        print(-1)
        exit()


n = solve(X1, Y2, X2, Y1)
ans = solve(n, Y3, X3, Y1 * Y2 // gcd(Y1, Y2))
print(ans)
0