結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
57,344 KB
testcase_01 AC 38 ms
109,568 KB
testcase_02 AC 36 ms
57,472 KB
testcase_03 TLE -
testcase_04 TLE -
testcase_05 WA -
testcase_06 TLE -
testcase_07 AC 37 ms
52,224 KB
testcase_08 AC 36 ms
52,480 KB
testcase_09 AC 35 ms
52,224 KB
testcase_10 WA -
testcase_11 AC 679 ms
57,984 KB
testcase_12 AC 951 ms
57,600 KB
testcase_13 AC 1,047 ms
58,240 KB
testcase_14 WA -
testcase_15 AC 1,974 ms
58,112 KB
testcase_16 AC 221 ms
57,944 KB
testcase_17 AC 259 ms
58,100 KB
testcase_18 WA -
testcase_19 TLE -
testcase_20 AC 518 ms
57,984 KB
testcase_21 TLE -
testcase_22 WA -
testcase_23 WA -
権限があれば一括ダウンロードができます

ソースコード

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