Submission #844648
Source Code Expand
Copy
#include <string>
#include <vector>
#include<iostream>
#include<cstdio>
#include<cstdlib>
#include<stack>
#include<queue>
#include<cmath>
#include<algorithm>
#include<functional>
#include<list>
#include<deque>
#include<bitset>
#include<set>
#include<map>
#include<unordered_map>
#include<cstring>
#include<sstream>
#include<complex>
#include<iomanip>
#include<numeric>
#include<cassert>
#define X first
#define Y second
#define pb push_back
#define rep(X,Y) for (int (X) = 0;(X) < (Y);++(X))
#define reps(X,S,Y) for (int (X) = S;(X) < (Y);++(X))
#define rrep(X,Y) for (int (X) = (Y)-1;(X) >=0;--(X))
#define repe(X,Y) for ((X) = 0;(X) < (Y);++(X))
#define peat(X,Y) for (;(X) < (Y);++(X))
#define all(X) (X).begin(),(X).end()
#define rall(X) (X).rbegin(),(X).rend()
#define eb emplace_back
#define UNIQUE(X) (X).erase(unique(all(X)),(X).end())
using namespace std;
typedef long long ll;
typedef pair<int,int> pii;
typedef pair<ll,ll> pll;
template<class T> using vv=vector<vector<T>>;
template<class T> ostream& operator<<(ostream &os, const vector<T> &t) {
os<<"{"; rep(i,t.size()) {os<<t[i]<<",";} os<<"}"<<endl; return os;}
template<class S, class T> ostream& operator<<(ostream &os, const pair<S,T> &t) { return os<<"("<<t.first<<","<<t.second<<")";}
template<class T> inline bool MX(T &l,const T &r){return l<r?l=r,1:0;}
template<class T> inline bool MN(T &l,const T &r){return l>r?l=r,1:0;}
const ll MOD=1e9+7;
int main(){
ios_base::sync_with_stdio(false);
cout<<fixed<<setprecision(0);
int n;
cin>>n;
vector<int> a(n);
rep(i,n) cin>>a[i];
int f=0,re=0;
rep(i,n){
re+=(a[i]+f)/2;
f=(a[i]+f)%2;
if(!a[i]) f=0;
}
cout<<re<<endl;
return 0;
}
Submission Info
Submission Time |
|
Task |
B - Simplified mahjong |
User |
nuip |
Language |
C++14 (GCC 5.4.1) |
Score |
0 |
Code Size |
1744 Byte |
Status |
WA |
Exec Time |
28 ms |
Memory |
640 KB |
Judge Result
Set Name |
Sample |
All |
Score / Max Score |
0 / 0 |
0 / 400 |
Status |
|
|
Set Name |
Test Cases |
Sample |
s1.txt, s2.txt |
All |
01.txt, 02.txt, 03.txt, 04.txt, 05.txt, 06.txt, 07.txt, 08.txt, 09.txt, 10.txt, 11.txt, 12.txt, 13.txt, 14.txt, 15.txt, 16.txt, 17.txt, 18.txt, 19.txt, 20.txt, 21.txt, 22.txt, s1.txt, s2.txt |
Case Name |
Status |
Exec Time |
Memory |
01.txt |
WA |
23 ms |
640 KB |
02.txt |
WA |
23 ms |
640 KB |
03.txt |
WA |
23 ms |
640 KB |
04.txt |
WA |
21 ms |
640 KB |
05.txt |
WA |
21 ms |
640 KB |
06.txt |
WA |
21 ms |
640 KB |
07.txt |
WA |
22 ms |
640 KB |
08.txt |
WA |
23 ms |
640 KB |
09.txt |
WA |
23 ms |
640 KB |
10.txt |
WA |
23 ms |
640 KB |
11.txt |
AC |
16 ms |
640 KB |
12.txt |
WA |
28 ms |
640 KB |
13.txt |
WA |
23 ms |
640 KB |
14.txt |
WA |
23 ms |
640 KB |
15.txt |
AC |
16 ms |
640 KB |
16.txt |
WA |
23 ms |
640 KB |
17.txt |
WA |
23 ms |
640 KB |
18.txt |
AC |
4 ms |
256 KB |
19.txt |
AC |
4 ms |
256 KB |
20.txt |
AC |
4 ms |
256 KB |
21.txt |
AC |
4 ms |
256 KB |
22.txt |
AC |
4 ms |
256 KB |
s1.txt |
AC |
4 ms |
256 KB |
s2.txt |
AC |
4 ms |
256 KB |