結果

問題 No.186 中華風 (Easy)
ユーザー yaoshimaxyaoshimax
提出日時 2015-05-10 11:58:13
言語 Python2
(2.7.18)
結果
AC  
実行時間 412 ms / 2,000 ms
コード長 491 bytes
コンパイル時間 448 ms
コンパイル使用メモリ 6,784 KB
実行使用メモリ 38,016 KB
最終ジャッジ日時 2024-07-19 18:26:18
合計ジャッジ時間 6,172 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 199 ms
31,940 KB
testcase_01 AC 117 ms
27,272 KB
testcase_02 AC 95 ms
19,508 KB
testcase_03 AC 18 ms
11,048 KB
testcase_04 AC 207 ms
28,372 KB
testcase_05 AC 201 ms
31,764 KB
testcase_06 AC 279 ms
34,084 KB
testcase_07 AC 227 ms
33,536 KB
testcase_08 AC 345 ms
37,868 KB
testcase_09 AC 339 ms
37,984 KB
testcase_10 AC 275 ms
34,928 KB
testcase_11 AC 412 ms
37,980 KB
testcase_12 AC 130 ms
33,792 KB
testcase_13 AC 146 ms
25,012 KB
testcase_14 AC 160 ms
24,320 KB
testcase_15 AC 60 ms
28,228 KB
testcase_16 AC 164 ms
28,864 KB
testcase_17 AC 115 ms
30,336 KB
testcase_18 AC 94 ms
36,620 KB
testcase_19 AC 224 ms
38,016 KB
testcase_20 AC 76 ms
15,744 KB
testcase_21 AC 192 ms
33,408 KB
testcase_22 AC 217 ms
36,736 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def gcd(A,B):
    if B<A:
        return gcd(B,A)
    if B%A==0:
        return A
    return gcd(B%A,A)

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

A1,B1=X1,Y1
if A1==0:
    A1+=Y1
for i in range(Y2):
    if A1%Y2==X2:
        break
    A1+=B1
if A1%Y2!=X2:
    print -1
    exit()
else:
    B1/=gcd(B1,Y2)
    B1*=Y2

for i in range(Y3):
    if A1%Y3==X3:
        break
    A1+=B1

if A1%Y3==X3:
    print A1
else:
    print -1
0