結果

問題 No.1350 2019-6problem
ユーザー tcltktcltk
提出日時 2021-01-17 13:30:32
言語 PyPy3
(7.3.15)
結果
MLE  
実行時間 -
コード長 621 bytes
コンパイル時間 196 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 940,368 KB
最終ジャッジ日時 2024-11-29 14:09:03
合計ジャッジ時間 50,374 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 154 ms
94,208 KB
testcase_01 MLE -
testcase_02 AC 155 ms
94,592 KB
testcase_03 MLE -
testcase_04 TLE -
testcase_05 MLE -
testcase_06 MLE -
testcase_07 AC 158 ms
96,004 KB
testcase_08 MLE -
testcase_09 AC 148 ms
94,464 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 AC 145 ms
95,844 KB
testcase_22 TLE -
testcase_23 MLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

#region Header
#!/usr/bin/env python3
# from typing import *

import sys
import io
import math
import collections
import decimal
import itertools
from queue import PriorityQueue
import bisect
import heapq

def input():
    return sys.stdin.readline()[:-1]

sys.setrecursionlimit(1000000)
#endregion

# _INPUT = """# paste here...
# """
# sys.stdin = io.StringIO(_INPUT)


def main():
    A, B, K = map(int, input().split())
    s = set()
    for i in range(1, K+1):
        s.add(A*i)
        s.add(B*i)
    v = sorted(list(s))[K-1]
    print(v)

if __name__ == '__main__':
    main()
0