CF1110A.Parity

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

You are given an integer nn ( n0n \ge 0 ) represented with kk digits in base (radix) bb . So,

n=a1bk1+a2bk2+ak1b+ak.n = a_1 \cdot b^{k-1} + a_2 \cdot b^{k-2} + \ldots a_{k-1} \cdot b + a_k.

For example, if b=17,k=3b=17, k=3 and a=\[11, 15, 7\] then n=11cdot172+15cdot17+7=3179+255+7=3441n=11\\cdot17^2+15\\cdot17+7=3179+255+7=3441

Determine whether nn is even or odd.

输入格式

The first line contains two integers bb and kk ( 2b1002\le b\le 100 , 1k1051\le k\le 10^5 ) — the base of the number and the number of digits.

The second line contains kk integers a1,a2,,aka_1, a_2, \ldots, a_k ( 0ai<b0\le a_i < b ) — the digits of nn .

The representation of nn contains no unnecessary leading zero. That is, a1a_1 can be equal to 00 only if k=1k = 1 .

输出格式

Print "even" if nn is even, otherwise print "odd".

You can print each letter in any case (upper or lower).

输入输出样例

  • 输入#1

    13 3
    3 2 7
    

    输出#1

    even
    
  • 输入#2

    10 9
    1 2 3 4 5 6 7 8 9
    

    输出#2

    odd
    
  • 输入#3

    99 5
    32 92 85 74 4
    

    输出#3

    odd
    
  • 输入#4

    2 2
    1 0
    

    输出#4

    even
    

说明/提示

In the first example, n=3132+213+7=540n = 3 \cdot 13^2 + 2 \cdot 13 + 7 = 540 , which is even.

In the second example, n=123456789n = 123456789 is odd.

In the third example, n=32994+92993+85992+7499+4=3164015155n = 32 \cdot 99^4 + 92 \cdot 99^3 + 85 \cdot 99^2 + 74 \cdot 99 + 4 = 3164015155 is odd.

In the fourth example n=2n = 2 .

首页