Submission #845413


Source Code Expand

#include <stdio.h>
#include <stdlib.h>

int main(){
	int N;
	int* A;
	int i;

	int pairs=0;

	int cur;

	scanf("%d", &N);
	A = (int*)malloc(sizeof(int) * N);

	for(i=0; i<N; i++){
		scanf("%d", &A[i]);
	}

	for(i=0; i<N-1; i++){
		while(A[i] > 0 && A[i+1] > 0){
			pairs++;
			A[i]--;
			A[i+1]--;
		}
		pairs += A[i] / 2;
		A[i] %= 2;
	}

	printf("%d\n", pairs);

	return 0;
}

Submission Info

Submission Time
Task B - Simplified mahjong
User sanoyatsu
Language C++14 (GCC 5.4.1)
Score 0
Code Size 411 Byte
Status WA
Exec Time 2105 ms
Memory 640 KB

Compile Error

./Main.cpp: In function ‘int main()’:
./Main.cpp:13:17: warning: ignoring return value of ‘int scanf(const char*, ...)’, declared with attribute warn_unused_result [-Wunused-result]
  scanf("%d", &N);
                 ^
./Main.cpp:17:21: warning: ignoring return value of ‘int scanf(const char*, ...)’, declared with attribute warn_unused_result [-Wunused-result]
   scanf("%d", &A[i]);
                     ^

Judge Result

Set Name Sample All
Score / Max Score 0 / 0 0 / 400
Status
AC × 2
AC × 8
WA × 1
TLE × 15
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 TLE 2105 ms 512 KB
02.txt TLE 2104 ms 512 KB
03.txt TLE 2101 ms 512 KB
04.txt TLE 2101 ms 512 KB
05.txt TLE 2105 ms 512 KB
06.txt TLE 2101 ms 512 KB
07.txt TLE 2105 ms 512 KB
08.txt TLE 2105 ms 512 KB
09.txt TLE 2101 ms 512 KB
10.txt TLE 2101 ms 512 KB
11.txt AC 15 ms 512 KB
12.txt TLE 2105 ms 640 KB
13.txt TLE 2101 ms 512 KB
14.txt TLE 2101 ms 512 KB
15.txt AC 16 ms 512 KB
16.txt TLE 2101 ms 512 KB
17.txt TLE 2104 ms 512 KB
18.txt AC 2 ms 128 KB
19.txt AC 2 ms 128 KB
20.txt WA 2 ms 128 KB
21.txt AC 2 ms 128 KB
22.txt AC 2 ms 128 KB
s1.txt AC 2 ms 128 KB
s2.txt AC 2 ms 128 KB