結果

問題 No.1594 Three Classes
ユーザー sasa8uyauyasasa8uyauya
提出日時 2023-10-09 20:20:03
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 222 ms / 2,000 ms
コード長 173 bytes
コンパイル時間 206 ms
コンパイル使用メモリ 82,388 KB
実行使用メモリ 76,368 KB
最終ジャッジ日時 2024-07-26 18:40:14
合計ジャッジ時間 4,648 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 211 ms
76,052 KB
testcase_01 AC 35 ms
53,500 KB
testcase_02 AC 35 ms
53,228 KB
testcase_03 AC 222 ms
76,040 KB
testcase_04 AC 207 ms
75,644 KB
testcase_05 AC 203 ms
75,756 KB
testcase_06 AC 221 ms
75,940 KB
testcase_07 AC 220 ms
75,916 KB
testcase_08 AC 211 ms
75,488 KB
testcase_09 AC 210 ms
75,652 KB
testcase_10 AC 207 ms
76,368 KB
testcase_11 AC 215 ms
75,800 KB
testcase_12 AC 211 ms
75,920 KB
testcase_13 AC 41 ms
60,944 KB
testcase_14 AC 219 ms
75,904 KB
testcase_15 AC 219 ms
75,772 KB
testcase_16 AC 102 ms
75,856 KB
testcase_17 AC 218 ms
76,024 KB
testcase_18 AC 40 ms
59,880 KB
testcase_19 AC 42 ms
60,384 KB
testcase_20 AC 49 ms
64,888 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
e=list(map(int,input().split()))
f=0
for i in range(3**n):
	p=[0,0,0]
	for j in range(n):
		p[(i//(3**j))%3]+=e[j]
	f|=p[0]==p[1]==p[2]
print(["No","Yes"][f])
0