結果

問題 No.1350 2019-6problem
ユーザー matriematrie
提出日時 2021-01-22 09:12:53
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
RE  
実行時間 -
コード長 105 bytes
コンパイル時間 186 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 818,216 KB
最終ジャッジ日時 2024-12-26 03:25:00
合計ジャッジ時間 16,706 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
15,616 KB
testcase_01 AC 29 ms
10,624 KB
testcase_02 AC 31 ms
10,624 KB
testcase_03 RE -
testcase_04 RE -
testcase_05 TLE -
testcase_06 RE -
testcase_07 AC 29 ms
10,496 KB
testcase_08 AC 29 ms
10,496 KB
testcase_09 AC 28 ms
10,496 KB
testcase_10 WA -
testcase_11 MLE -
testcase_12 MLE -
testcase_13 RE -
testcase_14 MLE -
testcase_15 RE -
testcase_16 RE -
testcase_17 RE -
testcase_18 MLE -
testcase_19 RE -
testcase_20 RE -
testcase_21 RE -
testcase_22 MLE -
testcase_23 MLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

a,b,k=map(int,input().split())
A=list(range(a,a*k,a))
B=list(range(b,b*k,b))
print(sorted(set(A+B))[k-1])
0