結果
問題 | No.1199 お菓子配り-2 |
ユーザー | Саид Абдулаев |
提出日時 | 2020-08-28 21:35:11 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,768 bytes |
コンパイル時間 | 3,639 ms |
コンパイル使用メモリ | 225,112 KB |
実行使用メモリ | 6,824 KB |
最終ジャッジ日時 | 2024-11-14 02:58:15 |
合計ジャッジ時間 | 7,619 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,820 KB |
testcase_01 | AC | 2 ms
6,820 KB |
testcase_02 | AC | 2 ms
6,816 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | WA | - |
testcase_31 | WA | - |
testcase_32 | WA | - |
testcase_33 | WA | - |
testcase_34 | WA | - |
testcase_35 | WA | - |
testcase_36 | WA | - |
testcase_37 | WA | - |
testcase_38 | WA | - |
testcase_39 | WA | - |
testcase_40 | WA | - |
testcase_41 | WA | - |
testcase_42 | WA | - |
testcase_43 | WA | - |
testcase_44 | WA | - |
testcase_45 | WA | - |
testcase_46 | WA | - |
testcase_47 | WA | - |
ソースコード
/** * author: said_v15 **/ #include <bits/stdc++.h> #include <ext/pb_ds/assoc_container.hpp> //#include <__msvc_all_public_headers.hpp> #pragma GCC optimize("Ofast") #pragma GCC target("avx,avx2,fma") #pragma GCC optimization ("unroll-loops") typedef long long ll; #define press_F_to_pay_respect ios_base::sync_with_stdio(false);cin.tie(0);cout.tie(0) #define forn for(int i=0;i<n;i++) #define fore(i,a,b) for(int i = a; i < (b); i++) #define pb push_back #define pob pop_back() #define mp make_pair #define sc second #define f first #define th third #define ld long double #define kek cout<<"\n"; #define rep(i,a,b) for(int i=a;i<b;i++) #define all(v) ((v).begin()), ((v).end()) #define halt {cout<<"NO"; return 0;} const ll MOD = 1e9 + 7; const ll MOD1 = 998244353; const int MAXN = 2000100; const int INF = 1e8; const ll LL_INF=1e18; const double pi=3.1415926535; using namespace std; int divide(int a, int b) { return (a+b-1)/b; } int main() { #if defined(_DEBUG) freopen("input.txt", "r", stdin); freopen("output.txt", "w", stdout); #endif press_F_to_pay_respect; // cout << fixed << setprecision(12) << ans; // string al = "abcdefghijklmnopqrstuvwxyz"; int questions=1; // cin>>questions; while(questions--) { int n,m; cin>>n>>m; ll ans=0; forn { ll cnt=0; for(int j=0;j<m;j++) { int a; cin>>a; cnt+=a; } ans=max(ans, cnt) ; } cout<<ans; kek; } // !!! LOOK AT NUMBER OF QUESTIONS IN A PROBLEM !!! (cin>>questions) // cout <<"Runtime is:"<<clock() * 1.0 / CLOCKS_PER_SEC <<endl; return 0; }