結果

問題 No.2812 Plus Minus Blackboard
ユーザー hato336hato336
提出日時 2024-07-19 22:11:40
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 167 ms / 2,000 ms
コード長 767 bytes
コンパイル時間 149 ms
コンパイル使用メモリ 82,188 KB
実行使用メモリ 117,860 KB
最終ジャッジ日時 2024-07-21 20:27:39
合計ジャッジ時間 4,834 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 22
権限があれば一括ダウンロードができます

ソースコード

diff #

import collections,sys,math,functools,operator,itertools,bisect,heapq,decimal,string,time,random
#sys.setrecursionlimit(10**9)
#sys.set_int_max_str_digits(0)
#input = sys.stdin.readline
#n = int(input())
#
#alist = []
#s = input()
n = int(input())
a = list(map(int,input().split()))
if min(a) <= sum(a) <= max(a):
    print('Yes')
else:
    print('No')
exit()
input = sys.stdin.readline
t = int(input())
for i in range(t):
    n = int(input())
    a = list(map(int,input().split()))
    cnt = n
    x = sum(1 if j % 2 == 0 else 0 for j in a)
    for j in range(1000000):
        if cnt % 2 == 0:
            if x == 0:
                print(['Bob','Alice'][j % 2])
                break
            x -= 1
            cnt += 1
        else:
            cnt -= 1
    
0