結果

問題 No.1350 2019-6problem
ユーザー Ultimate_Tea_04Ultimate_Tea_04
提出日時 2021-01-17 15:32:59
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 361 bytes
コンパイル時間 301 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 63,360 KB
最終ジャッジ日時 2024-05-07 04:47:11
合計ジャッジ時間 9,342 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
57,344 KB
testcase_01 AC 44 ms
51,840 KB
testcase_02 AC 43 ms
52,096 KB
testcase_03 TLE -
testcase_04 TLE -
testcase_05 WA -
testcase_06 TLE -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

def lcm(x,y):
    def gcd(x, y):
        if y == 0:
            return x
        else:
            return gcd(y,x%y)
    return (x*y)//gcd(x,y)

a,b,k = map(int,input().split())
x = lcm(a,b)
ac = x//a
bc = x//b
s = ac+bc-1
y = k//s
z = k%s-1
ans = x*y
na,nb = a,0
while z:
    if na<nb:
        na += a
    else:
        nb += b
    z -= 1
print(ans+max(na,nb))
0