結果

問題 No.1350 2019-6problem
ユーザー _matumo__matumo_
提出日時 2021-01-20 18:16:43
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
MLE  
実行時間 -
コード長 103 bytes
コンパイル時間 292 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 572,416 KB
最終ジャッジ日時 2024-12-23 08:21:09
合計ジャッジ時間 50,164 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
15,744 KB
testcase_01 MLE -
testcase_02 AC 32 ms
15,872 KB
testcase_03 MLE -
testcase_04 TLE -
testcase_05 MLE -
testcase_06 MLE -
testcase_07 AC 31 ms
15,744 KB
testcase_08 MLE -
testcase_09 AC 30 ms
15,616 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 31 ms
16,000 KB
testcase_22 MLE -
testcase_23 MLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

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