結果

問題 No.1350 2019-6problem
ユーザー zyxwzyxw
提出日時 2021-01-20 10:43:21
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
MLE  
実行時間 -
コード長 275 bytes
コンパイル時間 104 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 709,212 KB
最終ジャッジ日時 2024-12-21 17:18:40
合計ジャッジ時間 47,981 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
17,444 KB
testcase_01 MLE -
testcase_02 AC 37 ms
16,000 KB
testcase_03 MLE -
testcase_04 TLE -
testcase_05 MLE -
testcase_06 MLE -
testcase_07 AC 33 ms
15,872 KB
testcase_08 MLE -
testcase_09 AC 33 ms
17,444 KB
testcase_10 MLE -
testcase_11 TLE -
testcase_12 MLE -
testcase_13 TLE -
testcase_14 MLE -
testcase_15 MLE -
testcase_16 MLE -
testcase_17 MLE -
testcase_18 MLE -
testcase_19 MLE -
testcase_20 MLE -
testcase_21 WA -
testcase_22 AC 32 ms
10,752 KB
testcase_23 MLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

A,B,K=map(int,input().split())
import math
AB=(A*B)//math.gcd(A,B)
memo1=AB//A+AB//B-1
memo2=K%memo1
memo3=K//memo1
a=A
b=B
data=[AB]
while a<AB:
    data.append(a)
    a+=A
while b<AB:
    data.append(b)
    b+=B
data_sorted=sorted(data)
print(AB*memo3+data_sorted[memo2-1])
0