C++ 代码
#include <cstdio>
#include <iostream>
using namespace std;
int main(){
int r,y,g,n;
cin>>r>>y>>g>>n;
int res=0; //用来存储秒数
while(n--){
int k,t;
cin>>k>>t;
if(!k) res+=t;
else if(k==1) res+=t;
else if(k==2) res+=t+r;
}
cout<<res;
return 0;
}