結果
| 問題 | No.846 メダル |
| コンテスト | |
| ユーザー |
nohakai3
|
| 提出日時 | 2022-07-26 11:20:06 |
| 言語 | Python3 (3.14.3 + numpy 2.4.4 + scipy 1.17.1) |
| 結果 |
AC
|
| 実行時間 | 127 ms / 2,000 ms |
| コード長 | 174 bytes |
| 記録 | |
| コンパイル時間 | 613 ms |
| コンパイル使用メモリ | 20,828 KB |
| 実行使用メモリ | 15,360 KB |
| 最終ジャッジ日時 | 2026-03-30 18:40:17 |
| 合計ジャッジ時間 | 4,773 ms |
|
ジャッジサーバーID (参考情報) |
judge3_0 / judge1_1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 4 |
| other | AC * 22 |
ソースコード
p,q,r=map(int,input().split())
a,b,c=map(int,input().split())
x=max((a-1)*p+1,(a+b-1)*q+1,(a+b+c-1)*r+1)
y=min(a*p,(a+b)*q,(a+b+c)*r)
if x>y:
exit(print(-1))
print(x,y)
nohakai3