結果

問題 No.846 メダル
ユーザー mlihua09mlihua09
提出日時 2020-09-17 16:16:12
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 35 ms / 2,000 ms
コード長 243 bytes
コンパイル時間 145 ms
コンパイル使用メモリ 82,512 KB
実行使用メモリ 53,828 KB
最終ジャッジ日時 2024-06-22 06:35:22
合計ジャッジ時間 1,852 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,640 KB
testcase_01 AC 35 ms
53,596 KB
testcase_02 AC 32 ms
52,220 KB
testcase_03 AC 31 ms
52,484 KB
testcase_04 AC 32 ms
51,940 KB
testcase_05 AC 32 ms
51,904 KB
testcase_06 AC 31 ms
53,008 KB
testcase_07 AC 31 ms
52,080 KB
testcase_08 AC 31 ms
52,180 KB
testcase_09 AC 33 ms
53,352 KB
testcase_10 AC 32 ms
53,828 KB
testcase_11 AC 31 ms
51,968 KB
testcase_12 AC 31 ms
53,024 KB
testcase_13 AC 31 ms
53,004 KB
testcase_14 AC 31 ms
52,348 KB
testcase_15 AC 30 ms
52,492 KB
testcase_16 AC 32 ms
52,728 KB
testcase_17 AC 32 ms
52,140 KB
testcase_18 AC 30 ms
53,812 KB
testcase_19 AC 33 ms
52,704 KB
testcase_20 AC 34 ms
53,020 KB
testcase_21 AC 33 ms
52,028 KB
testcase_22 AC 32 ms
53,112 KB
testcase_23 AC 31 ms
53,724 KB
testcase_24 AC 33 ms
52,736 KB
testcase_25 AC 31 ms
52,144 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

P, Q, R = map(int, input().split())

A, B, C = map(int, input().split())

m = max(P * (A - 1) + 1, Q * (A + B - 1) + 1, R * (A + B + C - 1) + 1)

M = min(A * P, (A + B) * Q, (A + B + C) * R)

if m > M:
    print(-1)
    
else:
    print(m, M)
0