結果

問題 No.846 メダル
ユーザー H20H20
提出日時 2021-07-14 10:52:32
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 38 ms / 2,000 ms
コード長 191 bytes
コンパイル時間 281 ms
コンパイル使用メモリ 82,092 KB
実行使用メモリ 54,148 KB
最終ジャッジ日時 2024-07-03 09:50:15
合計ジャッジ時間 2,207 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,248 KB
testcase_01 AC 36 ms
52,760 KB
testcase_02 AC 37 ms
52,192 KB
testcase_03 AC 36 ms
51,880 KB
testcase_04 AC 37 ms
52,332 KB
testcase_05 AC 36 ms
52,136 KB
testcase_06 AC 37 ms
52,552 KB
testcase_07 AC 36 ms
53,496 KB
testcase_08 AC 36 ms
52,576 KB
testcase_09 AC 37 ms
52,872 KB
testcase_10 AC 37 ms
53,440 KB
testcase_11 AC 38 ms
52,828 KB
testcase_12 AC 37 ms
52,284 KB
testcase_13 AC 37 ms
52,756 KB
testcase_14 AC 38 ms
53,424 KB
testcase_15 AC 37 ms
52,944 KB
testcase_16 AC 37 ms
51,824 KB
testcase_17 AC 37 ms
52,208 KB
testcase_18 AC 37 ms
54,148 KB
testcase_19 AC 37 ms
53,688 KB
testcase_20 AC 37 ms
53,120 KB
testcase_21 AC 37 ms
52,356 KB
testcase_22 AC 37 ms
52,292 KB
testcase_23 AC 37 ms
52,352 KB
testcase_24 AC 37 ms
52,908 KB
testcase_25 AC 36 ms
52,868 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

P,Q,R = map(int,input().split())
A,B,C = map(int,input().split())
MA = min(P*A,Q*(A+B),R*(A+B+C))
MI = max(P*(A-1)+1,Q*(A+B-1)+1,R*(A+B+C-1)+1)
if MI<=MA:
    print(MI,MA)
else:
    print(-1)
0