結果

問題 No.1594 Three Classes
ユーザー hiro1729hiro1729
提出日時 2024-09-10 19:15:55
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 160 ms / 2,000 ms
コード長 250 bytes
コンパイル時間 471 ms
コンパイル使用メモリ 82,540 KB
実行使用メモリ 76,444 KB
最終ジャッジ日時 2024-09-10 19:15:59
合計ジャッジ時間 3,952 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 139 ms
75,968 KB
testcase_01 AC 36 ms
53,156 KB
testcase_02 AC 35 ms
52,220 KB
testcase_03 AC 160 ms
76,032 KB
testcase_04 AC 137 ms
76,008 KB
testcase_05 AC 136 ms
75,764 KB
testcase_06 AC 128 ms
76,072 KB
testcase_07 AC 128 ms
76,444 KB
testcase_08 AC 135 ms
75,856 KB
testcase_09 AC 132 ms
75,856 KB
testcase_10 AC 134 ms
75,748 KB
testcase_11 AC 146 ms
75,856 KB
testcase_12 AC 136 ms
75,784 KB
testcase_13 AC 39 ms
60,080 KB
testcase_14 AC 127 ms
76,012 KB
testcase_15 AC 131 ms
75,908 KB
testcase_16 AC 76 ms
75,776 KB
testcase_17 AC 134 ms
76,128 KB
testcase_18 AC 38 ms
59,232 KB
testcase_19 AC 40 ms
61,156 KB
testcase_20 AC 48 ms
71,484 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from itertools import product

N = int(input())
E = list(map(int, input().split()))
ans = 0
for p in product([0, 1, 2], repeat = N):
	c = [0] * 3
	for i in range(N):
		c[p[i]] += E[i]
	if len(set(c)) == 1:
		ans += 1
print("Yes" if ans > 0 else "No")
0