結果

問題 No.186 中華風 (Easy)
ユーザー はむ吉🐹はむ吉🐹
提出日時 2016-05-15 13:36:27
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 685 ms / 2,000 ms
コード長 837 bytes
コンパイル時間 128 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 10,880 KB
最終ジャッジ日時 2024-07-19 18:28:12
合計ジャッジ時間 8,015 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 311 ms
10,752 KB
testcase_01 AC 156 ms
10,752 KB
testcase_02 AC 152 ms
10,752 KB
testcase_03 AC 34 ms
10,752 KB
testcase_04 AC 341 ms
10,880 KB
testcase_05 AC 310 ms
10,752 KB
testcase_06 AC 451 ms
10,752 KB
testcase_07 AC 382 ms
10,752 KB
testcase_08 AC 552 ms
10,752 KB
testcase_09 AC 547 ms
10,752 KB
testcase_10 AC 434 ms
10,752 KB
testcase_11 AC 685 ms
10,752 KB
testcase_12 AC 194 ms
10,752 KB
testcase_13 AC 219 ms
10,752 KB
testcase_14 AC 258 ms
10,752 KB
testcase_15 AC 53 ms
10,752 KB
testcase_16 AC 245 ms
10,880 KB
testcase_17 AC 169 ms
10,752 KB
testcase_18 AC 98 ms
10,752 KB
testcase_19 AC 362 ms
10,752 KB
testcase_20 AC 134 ms
10,752 KB
testcase_21 AC 322 ms
10,752 KB
testcase_22 AC 360 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env python3

import collections
import math


Equation = collections.namedtuple("Equation", "x y")
NOSOL = -1


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


def solve(eq1, eq2, eq3):
    for i in range(eq2.y + 1):
        cand12 = eq1.x + eq1.y * i
        if cand12 > 0 and cand12 % eq2.y == eq2.x:
            sol12 = cand12
            lcm12 = lcm(eq1.y, eq2.y)
            break
    else:
        return NOSOL
    for j in range(eq3.y + 2):
        cand123 = sol12 + lcm12 * j
        if cand123 > 0 and cand123 % eq3.y == eq3.x:
            return cand123
    else:
        return NOSOL


def main():
    eq1 = Equation(*map(int, input().split()))
    eq2 = Equation(*map(int, input().split()))
    eq3 = Equation(*map(int, input().split()))
    print(solve(eq1, eq2, eq3))


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