Submission #844752
Source Code Expand
Copy
#include <bits/stdc++.h> #define PB push_back #define MP make_pair #define F first #define S second #define SZ(x) ((int)(x).size()) #define ALL(x) (x).begin(),(x).end() #ifdef _DEBUG_ #define debug(...) printf(__VA_ARGS__) #else #define debug(...) (void)0 #endif using namespace std; typedef long long ll; typedef pair<int,int> PII; typedef vector<int> VI; const int MAXN=100050; int a[MAXN]; int main() { int N; scanf("%d",&N); for(int i=0;i<N;i++) scanf("%d",a+i); ll ans=0; for(int i=0;i<N;i++) { ans+=a[i]/2; a[i]%=2; if(i+1<N && a[i]>0 && a[i+1]>0) ans++, a[i]--, a[i+1]--; } cout << ans << endl; return 0; }
Submission Info
Submission Time | |
---|---|
Task | B - Simplified mahjong |
User | t1016d |
Language | C++14 (GCC 5.4.1) |
Score | 400 |
Code Size | 663 Byte |
Status | AC |
Exec Time | 27 ms |
Memory | 640 KB |
Compile Error
./Main.cpp: In function ‘int main()’: ./Main.cpp:22:23: warning: ignoring return value of ‘int scanf(const char*, ...)’, declared with attribute warn_unused_result [-Wunused-result] int N; scanf("%d",&N); ^ ./Main.cpp:23:38: warning: ignoring return value of ‘int scanf(const char*, ...)’, declared with attribute warn_unused_result [-Wunused-result] for(int i=0;i<N;i++) scanf("%d",a+i); ^
Judge Result
Set Name | Sample | All | ||||
---|---|---|---|---|---|---|
Score / Max Score | 0 / 0 | 400 / 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 | AC | 26 ms | 640 KB |
02.txt | AC | 26 ms | 640 KB |
03.txt | AC | 26 ms | 640 KB |
04.txt | AC | 22 ms | 640 KB |
05.txt | AC | 23 ms | 640 KB |
06.txt | AC | 23 ms | 640 KB |
07.txt | AC | 25 ms | 640 KB |
08.txt | AC | 24 ms | 640 KB |
09.txt | AC | 26 ms | 640 KB |
10.txt | AC | 27 ms | 640 KB |
11.txt | AC | 17 ms | 640 KB |
12.txt | AC | 26 ms | 640 KB |
13.txt | AC | 25 ms | 640 KB |
14.txt | AC | 25 ms | 640 KB |
15.txt | AC | 17 ms | 640 KB |
16.txt | AC | 26 ms | 640 KB |
17.txt | AC | 26 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 |