Submission #4242186


Source Code Expand

N = int(input())
L = []
ans = 0
for i in range(N) :
    a = int(input())
    ans += a//2
    L.append(a%2)

for i in range(1,N) :
    if L[i-1] == L[i] == 1 :
        L[i-1] = L[i] = 0
        ans += 1
print(ans)

Submission Info

Submission Time
Task B - Simplified mahjong
User kawacchu
Language Python (3.4.3)
Score 0
Code Size 226 Byte
Status WA
Exec Time 245 ms
Memory 3932 KB

Judge Result

Set Name Sample All
Score / Max Score 0 / 0 0 / 400
Status
AC × 2
AC × 12
WA × 12
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 236 ms 3864 KB
02.txt WA 239 ms 3864 KB
03.txt WA 238 ms 3932 KB
04.txt WA 230 ms 3884 KB
05.txt WA 244 ms 3884 KB
06.txt WA 226 ms 3884 KB
07.txt WA 238 ms 3864 KB
08.txt WA 232 ms 3864 KB
09.txt WA 233 ms 3868 KB
10.txt WA 234 ms 3864 KB
11.txt AC 220 ms 3864 KB
12.txt AC 231 ms 3872 KB
13.txt AC 236 ms 3864 KB
14.txt AC 245 ms 3872 KB
15.txt AC 227 ms 3880 KB
16.txt WA 230 ms 3872 KB
17.txt WA 229 ms 3872 KB
18.txt AC 17 ms 2940 KB
19.txt AC 17 ms 3060 KB
20.txt AC 17 ms 2940 KB
21.txt AC 17 ms 3060 KB
22.txt AC 17 ms 2940 KB
s1.txt AC 17 ms 2940 KB
s2.txt AC 17 ms 3060 KB