Run ID 作者 问题 语言 测评结果 时间 内存 代码长度 提交时间
82342 sh25_shenpy 上线人数 C++ 通过 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; }


测评信息: