Run ID Author Problem Lang Verdict Time Memory Code Length Submit Time
82342 sh25_shenpy 上线人数 C++ Accepted 0 MS 252 KB 306 2026-01-11 17:50:20

Tests(1/1):


#include <bits/stdc++.h> using namespace std; int main() { int n,m,k,s=0,t=0; cin>>n>>m>>k; int a[n][m]; for(int i=0;i<n;++i){ for(int j=0;j<m;++j){ cin>>a[i][j]; s+=a[i][j]; } if(s>=k) ++t; } cout<<t-1; return 0; }


Judgement Protocol: