結果

問題 No.186 中華風 (Easy)
ユーザー pluto77pluto77
提出日時 2016-04-14 14:57:04
言語 PyPy2
(7.3.15)
結果
AC  
実行時間 300 ms / 2,000 ms
コード長 423 bytes
コンパイル時間 1,975 ms
コンパイル使用メモリ 76,176 KB
実行使用メモリ 77,824 KB
最終ジャッジ日時 2024-07-19 18:27:47
合計ジャッジ時間 4,947 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 259 ms
77,216 KB
testcase_01 AC 111 ms
77,184 KB
testcase_02 AC 155 ms
77,312 KB
testcase_03 AC 84 ms
77,440 KB
testcase_04 AC 147 ms
77,696 KB
testcase_05 AC 158 ms
77,440 KB
testcase_06 AC 253 ms
77,704 KB
testcase_07 AC 137 ms
77,824 KB
testcase_08 AC 161 ms
77,440 KB
testcase_09 AC 159 ms
77,184 KB
testcase_10 AC 300 ms
77,732 KB
testcase_11 AC 193 ms
77,484 KB
testcase_12 AC 102 ms
77,568 KB
testcase_13 AC 191 ms
77,696 KB
testcase_14 AC 109 ms
77,480 KB
testcase_15 AC 89 ms
77,440 KB
testcase_16 AC 186 ms
77,440 KB
testcase_17 AC 95 ms
77,472 KB
testcase_18 AC 122 ms
77,564 KB
testcase_19 AC 84 ms
76,416 KB
testcase_20 AC 77 ms
76,032 KB
testcase_21 AC 82 ms
76,160 KB
testcase_22 AC 83 ms
76,700 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# -*- coding: utf-8 -*-
#yuki_186
import sys

def gcd(a, b):
 while b:
  a, b = b, a%b
 return a

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


x1,y1=map(int,raw_input().split())
x2,y2=map(int,raw_input().split())
x3,y3=map(int,raw_input().split())

for i in xrange(y2):
 a0=y1*i+x1
 if a0==0:
  continue
 if (a0-x2)%y2==0:
  for j in xrange(y3):
   res=a0+j*lcm(y1,y2)
   if (res-x3)%y3==0:
    print res
    sys.exit()
 
print -1
0