Submission #54114447
Source Code Expand
Copy
#include <bits/stdc++.h>using namespace std;#define rep(i,a,n) for(int i=a;i<n;i++)#define ll long longint main(){ios::sync_with_stdio(false);cin.tie(0);int a,b,k;cin >> a >> b;vector<int> sum(b);vector<int> all(b);for(int i=0;i<b;i++){cin >> sum[i];}for(int i=0;i<a;i++){for(int p=0;p<b;p++){cin >> k;all[p]+=k;}}for(int i=0;i<b;i++){
#include <bits/stdc++.h> using namespace std; #define rep(i,a,n) for(int i=a;i<n;i++) #define ll long long int main(){ ios::sync_with_stdio(false); cin.tie(0); int a,b,k; cin >> a >> b; vector<int> sum(b); vector<int> all(b); for(int i=0;i<b;i++){ cin >> sum[i]; } for(int i=0;i<a;i++){ for(int p=0;p<b;p++){ cin >> k; all[p]+=k; } } for(int i=0;i<b;i++){ if(sum[i] > all[i]){ cout << "No"; return 0; } } cout << "Yes"; }
Submission Info
Submission Time | |
---|---|
Task | B - Nutrients |
User | p2bananan |
Language | C++ 20 (gcc 12.2) |
Score | 150 |
Code Size | 518 Byte |
Status | AC |
Exec Time | 1 ms |
Memory | 3668 KB |
Judge Result
Set Name | Sample | All | ||||
---|---|---|---|---|---|---|
Score / Max Score | 0 / 0 | 150 / 150 | ||||
Status |
|
|
Set Name | Test Cases |
---|---|
Sample | sample_01.txt, sample_02.txt |
All | hand.txt, random_01.txt, random_02.txt, random_03.txt, random_04.txt, random_05.txt, random_06.txt, random_07.txt, random_08.txt, random_09.txt, random_10.txt, random_11.txt, random_12.txt, random_13.txt, random_14.txt, random_15.txt, random_16.txt, random_17.txt, random_18.txt, random_19.txt, random_20.txt, random_21.txt, random_22.txt, sample_01.txt, sample_02.txt |
Case Name | Status | Exec Time | Memory |
---|---|---|---|
hand.txt | AC | 1 ms | 3420 KB |
random_01.txt | AC | 1 ms | 3536 KB |
random_02.txt | AC | 1 ms | 3540 KB |
random_03.txt | AC | 1 ms | 3404 KB |
random_04.txt | AC | 1 ms | 3464 KB |
random_05.txt | AC | 1 ms | 3456 KB |
random_06.txt | AC | 1 ms | 3404 KB |
random_07.txt | AC | 1 ms | 3612 KB |
random_08.txt | AC | 1 ms | 3664 KB |
random_09.txt | AC | 1 ms | 3664 KB |
random_10.txt | AC | 1 ms | 3532 KB |
random_11.txt | AC | 1 ms | 3532 KB |
random_12.txt | AC | 1 ms | 3524 KB |
random_13.txt | AC | 1 ms | 3536 KB |
random_14.txt | AC | 1 ms | 3608 KB |
random_15.txt | AC | 1 ms | 3536 KB |
random_16.txt | AC | 1 ms | 3612 KB |
random_17.txt | AC | 1 ms | 3668 KB |
random_18.txt | AC | 1 ms | 3456 KB |
random_19.txt | AC | 1 ms | 3604 KB |
random_20.txt | AC | 1 ms | 3604 KB |
random_21.txt | AC | 1 ms | 3540 KB |
random_22.txt | AC | 1 ms | 3524 KB |
sample_01.txt | AC | 1 ms | 3532 KB |
sample_02.txt | AC | 1 ms | 3504 KB |