結果

問題 No.1594 Three Classes
ユーザー とりゐとりゐ
提出日時 2021-07-09 21:26:09
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 125 ms / 2,000 ms
コード長 668 bytes
コンパイル時間 191 ms
コンパイル使用メモリ 82,664 KB
実行使用メモリ 76,288 KB
最終ジャッジ日時 2024-11-16 07:24:09
合計ジャッジ時間 2,743 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 125 ms
75,904 KB
testcase_01 AC 46 ms
53,504 KB
testcase_02 AC 45 ms
53,632 KB
testcase_03 AC 56 ms
67,072 KB
testcase_04 AC 117 ms
76,288 KB
testcase_05 AC 117 ms
76,032 KB
testcase_06 AC 52 ms
60,800 KB
testcase_07 AC 53 ms
63,616 KB
testcase_08 AC 119 ms
75,984 KB
testcase_09 AC 117 ms
76,288 KB
testcase_10 AC 117 ms
76,032 KB
testcase_11 AC 115 ms
76,160 KB
testcase_12 AC 116 ms
75,776 KB
testcase_13 AC 44 ms
53,632 KB
testcase_14 AC 66 ms
76,288 KB
testcase_15 AC 65 ms
76,160 KB
testcase_16 AC 54 ms
68,692 KB
testcase_17 AC 53 ms
66,084 KB
testcase_18 AC 44 ms
53,504 KB
testcase_19 AC 51 ms
61,056 KB
testcase_20 AC 52 ms
61,568 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
import math
from collections import deque,Counter
#sys.setrecursionlimit(10**7)
int1=lambda x: int(x)-1

mi=lambda :map(int,input().split())
li=lambda :list(mi())
mi1=lambda :map(int1,input().split())
li1=lambda :list(mi1())
mis=lambda :map(str,input().split())
lis=lambda :list(mis())

from collections import defaultdict
"""
d=defaultdict(int) #初期値 0
d=defaultdict(lambda:1) #初期値 1
"""

mod=10**9+7
Mod=998244353
INF=10**18
ans=0


n=int(input())
a=li()
import itertools

all = itertools.product([0,1,2], repeat=n)
for x in all:
  c=[0,0,0]
  for i in range(n):
    c[x[i]]+=a[i]
  if c[0]==c[1]==c[2]:
    print('Yes')
    exit()
print('No')
0