結果

問題 No.1594 Three Classes
ユーザー naut3naut3
提出日時 2024-01-30 14:21:41
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 438 ms / 2,000 ms
コード長 354 bytes
コンパイル時間 138 ms
コンパイル使用メモリ 82,296 KB
実行使用メモリ 271,964 KB
最終ジャッジ日時 2024-09-28 10:14:42
合計ジャッジ時間 7,167 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 435 ms
271,964 KB
testcase_01 AC 35 ms
52,096 KB
testcase_02 AC 35 ms
52,352 KB
testcase_03 AC 325 ms
260,248 KB
testcase_04 AC 426 ms
271,812 KB
testcase_05 AC 436 ms
271,648 KB
testcase_06 AC 317 ms
260,204 KB
testcase_07 AC 330 ms
259,904 KB
testcase_08 AC 438 ms
271,884 KB
testcase_09 AC 434 ms
271,680 KB
testcase_10 AC 435 ms
271,808 KB
testcase_11 AC 432 ms
271,936 KB
testcase_12 AC 426 ms
271,684 KB
testcase_13 AC 41 ms
58,496 KB
testcase_14 AC 335 ms
269,760 KB
testcase_15 AC 334 ms
269,376 KB
testcase_16 AC 143 ms
136,220 KB
testcase_17 AC 326 ms
259,900 KB
testcase_18 AC 36 ms
52,608 KB
testcase_19 AC 46 ms
62,208 KB
testcase_20 AC 50 ms
71,296 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
E = list(map(int, input().split()))

state = [[]]

for _ in range(N):
	state_nxt = []
		
	for s in state:
		for i in range(3):
			t = s[:]
			t.append(i)
			state_nxt.append(t)

	state = state_nxt[:]

for s in state:
	p = [0, 0, 0]
	
	for i in range(N):
		p[s[i]] += E[i]
	
	if p[0] == p[1] == p[2]:
		print("Yes")
		exit()

print("No")
0