Submission #1367986


Source Code Expand

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace agc_003__b
{
    class Program
    {
        static void Main(string[] args)
        {
            long n = long.Parse(Console.ReadLine());
            long[] a = new long[n];
            long ans = 0;
            for (long i = 0; i < n; i++)
            {
                a[i] = long.Parse(Console.ReadLine());
                if (i != 0)
                {
                    ans += (a[i] + a[i - 1]) / 2;
                    if ((a[i] % 2 == 0 )|| a[i - 1] % 2 == 0) { a[i] = 0; a[i - 1] = 0; }
                    if (a[i] % 2 == 0 || a[i - 1] % 2 == 1) { a[i] = 0; a[i - 1] = 1; }
                    if (a[i] % 2 == 1 || a[i - 1] % 2 == 1) { a[i] = 0; a[i - 1] = 0; }
                    if (a[i] % 2 == 1 || a[i - 1] % 2 == 0) { a[i] = 1; a[i - 1] = 0; }
                }
            }
          Console.WriteLine(ans);Console.ReadLine();

        }
    }
}

Submission Info

Submission Time
Task B - Simplified mahjong
User rayhotate
Language C# (Mono 4.6.2.0)
Score 0
Code Size 1025 Byte
Status WA
Exec Time 71 ms
Memory 17208 KB

Judge Result

Set Name Sample All
Score / Max Score 0 / 0 0 / 400
Status
WA × 2
AC × 6
WA × 18
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 66 ms 13788 KB
02.txt WA 66 ms 13664 KB
03.txt WA 65 ms 13664 KB
04.txt WA 58 ms 13664 KB
05.txt WA 58 ms 11616 KB
06.txt WA 58 ms 13664 KB
07.txt WA 62 ms 13664 KB
08.txt WA 67 ms 11616 KB
09.txt WA 65 ms 17208 KB
10.txt WA 65 ms 15712 KB
11.txt AC 50 ms 13664 KB
12.txt AC 66 ms 15712 KB
13.txt WA 65 ms 13664 KB
14.txt WA 64 ms 13664 KB
15.txt WA 50 ms 11616 KB
16.txt WA 66 ms 15712 KB
17.txt WA 71 ms 17208 KB
18.txt AC 20 ms 11092 KB
19.txt AC 20 ms 11092 KB
20.txt WA 20 ms 11092 KB
21.txt AC 21 ms 13140 KB
22.txt AC 20 ms 11092 KB
s1.txt WA 20 ms 11092 KB
s2.txt WA 20 ms 9044 KB