#32732: c++ ans


t010079@twnt5.thsh.tyc.edu.tw (jchu0952)

學校 : 不指定學校
編號 : 210901
來源 : [106.104.194.31]
最後登入時間 :
2023-02-28 14:45:59
f441. 評分系統 Score -- TOI 練習賽202011新手組第1題 | From: [163.25.253.207] | 發表日期 : 2022-11-01 19:20

#include <iostream>

using namespace std;

int main()
{
    int a, b;
    cin >>a >> b;
    int ans[a];
    for(int i = 0; i < a ; i++)
    {
        cin >> ans[i];
    }
    int n;
    cin >> n;
    int student[n][a];
    for(int i = 0 ; i < n; i++)
    {
        for(int j = 0; j < a; j++)
        {
            cin >> student[i][j];
        }
    }
    int score = 0;
    for(int i = 0; i < n; i++)
    {

        for(int j = 0 ; j < a; j++)
        {
            if(student[i][j] == ans[j])
            {
                score += b;
            }
        }
        cout << score <<endl;
        score = 0;
    }

}

 
ZeroJudge Forum