#44304: cpp解


11331076@stu.tshs.tp.edu.tw (陳畇寧)

學校 : 臺北市私立東山高級中學
編號 : 278319
來源 : [123.50.44.70]
最後登入時間 :
2024-11-22 22:53:12
o922. 年貨大街 (Market) -- TOI練習賽202409新手組第2題 | From: [123.50.44.70] | 發表日期 : 2024-11-22 22:16

#include <iostream>
#include <vector>
using namespace std;

int main() {
    int firstline, a, b;
    cin >> firstline;  

    vector<int> prices(firstline);  

    
    for (int i = 0; i < firstline; i++) {
        cin >> prices[i];  
    }

    int totalmoney = 0;
    
    
    while (cin >> a >> b) {
        if (a == 0 && b == 0) {
            break; 
        }
        totalmoney += prices[a - 1] * b;  
    }   

cout << totalmoney << endl;

    return 0;
}

 
ZeroJudge Forum