Submission #1367296


Source Code Expand

using System;

namespace agc003_b
{
    class Program
    {
        static void Main(string[] args)
        {
            int n = int.Parse(Console.ReadLine());
            int[] a = new int[n];
            for (int i = 0; i < n; i++)
            {
                a[i] = int.Parse(Console.ReadLine());
            }
            ulong x = 0;
            x += (ulong)a[0] / 2;
            a[0] = a[0] % 2;
            for (int i = 1; i < n; i++)
            {
                if (a[i - 1] == 1 && a[i] > 0)
                {
                    a[i]--;
                    a[i - 1]--;
                    x++;
                }
                x += (ulong)a[i] / 2;
                a[i] = a[i] % 2;
            }
            Console.WriteLine(x);
        }
    }
}

Submission Info

Submission Time
Task B - Simplified mahjong
User mencotton
Language C# (Mono 4.6.2.0)
Score 400
Code Size 794 Byte
Status AC
Exec Time 65 ms
Memory 15328 KB

Judge Result

Set Name Sample All
Score / Max Score 0 / 0 400 / 400
Status
AC × 2
AC × 24
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 62 ms 15328 KB
02.txt AC 62 ms 15328 KB
03.txt AC 63 ms 13280 KB
04.txt AC 55 ms 11232 KB
05.txt AC 56 ms 13280 KB
06.txt AC 55 ms 11232 KB
07.txt AC 60 ms 13280 KB
08.txt AC 60 ms 13280 KB
09.txt AC 62 ms 13280 KB
10.txt AC 63 ms 15328 KB
11.txt AC 47 ms 11232 KB
12.txt AC 63 ms 13280 KB
13.txt AC 60 ms 15328 KB
14.txt AC 61 ms 13280 KB
15.txt AC 49 ms 15328 KB
16.txt AC 62 ms 13280 KB
17.txt AC 65 ms 15328 KB
18.txt AC 21 ms 13140 KB
19.txt AC 20 ms 11092 KB
20.txt AC 20 ms 9044 KB
21.txt AC 20 ms 9044 KB
22.txt AC 20 ms 11092 KB
s1.txt AC 20 ms 9044 KB
s2.txt AC 20 ms 13140 KB