結果

問題 No.186 中華風 (Easy)
ユーザー しらっ亭しらっ亭
提出日時 2015-08-10 20:33:31
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 417 ms / 2,000 ms
コード長 629 bytes
コンパイル時間 91 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 10,752 KB
最終ジャッジ日時 2024-07-19 18:27:04
合計ジャッジ時間 5,333 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 216 ms
10,624 KB
testcase_01 AC 101 ms
10,624 KB
testcase_02 AC 111 ms
10,496 KB
testcase_03 AC 31 ms
10,752 KB
testcase_04 AC 203 ms
10,624 KB
testcase_05 AC 190 ms
10,496 KB
testcase_06 AC 286 ms
10,624 KB
testcase_07 AC 220 ms
10,624 KB
testcase_08 AC 338 ms
10,624 KB
testcase_09 AC 331 ms
10,624 KB
testcase_10 AC 348 ms
10,496 KB
testcase_11 AC 417 ms
10,624 KB
testcase_12 AC 120 ms
10,624 KB
testcase_13 AC 152 ms
10,624 KB
testcase_14 AC 160 ms
10,624 KB
testcase_15 AC 45 ms
10,624 KB
testcase_16 AC 107 ms
10,624 KB
testcase_17 AC 38 ms
10,624 KB
testcase_18 AC 73 ms
10,624 KB
testcase_19 AC 210 ms
10,624 KB
testcase_20 AC 86 ms
10,752 KB
testcase_21 AC 185 ms
10,624 KB
testcase_22 AC 204 ms
10,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def gcd(a, b):
    m, n = min(a, b), max(a, b)

    while n != 0:
        m, n = n, m % n
    return m


def lcm(a, b):
    return a * b // gcd(a, b)


def solve():
    x1, y1 = list(map(int, input().split()))
    x2, y2 = list(map(int, input().split()))
    x3, y3 = list(map(int, input().split()))

    lcm12 = lcm(y1, y2)

    for a in range(y2):
        p = a * y1 + x1
        if p % y2 == x2:
            for b in range(1 if p == 0 else 0, y3):
                q = b * lcm12 + p
                if q % y3 == x3:
                    print(q)
                    return
    print(-1)


if __name__ == '__main__':
    solve()
0