結果
| 問題 |
No.795 Restrictions!!!!!!!!!!!!!!
|
| コンテスト | |
| ユーザー |
__2346__
|
| 提出日時 | 2019-10-08 14:48:09 |
| 言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
| 結果 |
RE
|
| 実行時間 | - |
| コード長 | 179 bytes |
| コンパイル時間 | 371 ms |
| コンパイル使用メモリ | 12,544 KB |
| 実行使用メモリ | 10,880 KB |
| 最終ジャッジ日時 | 2024-11-07 00:25:24 |
| 合計ジャッジ時間 | 1,574 ms |
|
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | RE * 20 |
ソースコード
n = int(input())
l = [int(input() for i in range(n))]
if l[1] % 2 == 1:
print('NO')
else:
if (l[0] + l[1]//10) % 2 == 0:
print('YES')
else:
print('NO')
__2346__