Submission #00047


ソースコード

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
#include <bits/stdc++.h>
using namespace std;
#define ll long long
#define all(x) x.begin(),x.end()
#define fol(i,s,g) for(int i=(int)(s); i<(int)(g); i++)
#define fix(ans,k) fixed << setprecision(k) << (double)ans
#define total(n) n*(n+1)/2
#define lcm(a,b) (a/__gcd(a,b)*b)
int main(){
int n, x, y, b, p;
cin>>n;
int ans1, ans2, ans[n];
fol(i,0,n){
cin>>x>>y>>b>>p;
ans1 = x*b + y*p;
if (b >= 5 && p >= 2) {
ans1 *= 0.8;
}
ans2 = max(b, 5) * x + max(p, 2) * y;
ans2 *= 0.8;
ans[i] = min(ans1, ans2);
}
fol(i,0,n){
cout<<ans[i]<<'\n';
}
return 0;
}

ステータス

項目 データ
問題 0003 - 入場料金
ユーザー名 ei2109
投稿日時 2022-07-04 16:40:19
言語 C++17
状態 Accepted
得点 3
ソースコード長 685 Byte
最大実行時間 34 ms
最大メモリ使用量 680 KB

セット

セット 得点 Cases
1 ALL 3 / 3 *

テストケース

ファイル名 状態 実行時間 メモリ使用量 #
input001.txt AC 34 ms 476 KB
1
input002.txt AC 21 ms 576 KB
1
input003.txt AC 21 ms 680 KB
1
input004.txt AC 17 ms 652 KB
1
input005.txt AC 18 ms 616 KB
1
input006.txt AC 22 ms 592 KB
1
input007.txt AC 22 ms 564 KB
1
input008.txt AC 16 ms 536 KB
1
input009.txt AC 16 ms 508 KB
1
input010.txt AC 21 ms 480 KB
1