結果

問題 No.1594 Three Classes
ユーザー 河野竜也河野竜也
提出日時 2021-09-12 21:06:48
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 213 bytes
コンパイル時間 391 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 10,880 KB
最終ジャッジ日時 2024-06-24 14:10:24
合計ジャッジ時間 20,601 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 AC 28 ms
10,880 KB
testcase_02 AC 28 ms
10,752 KB
testcase_03 AC 67 ms
10,752 KB
testcase_04 AC 1,971 ms
10,880 KB
testcase_05 AC 1,991 ms
10,880 KB
testcase_06 AC 64 ms
10,880 KB
testcase_07 AC 109 ms
10,752 KB
testcase_08 TLE -
testcase_09 AC 1,939 ms
10,752 KB
testcase_10 TLE -
testcase_11 AC 1,952 ms
10,752 KB
testcase_12 AC 1,975 ms
10,880 KB
testcase_13 AC 29 ms
10,752 KB
testcase_14 AC 428 ms
10,624 KB
testcase_15 AC 247 ms
10,752 KB
testcase_16 AC 140 ms
10,880 KB
testcase_17 AC 101 ms
10,752 KB
testcase_18 AC 28 ms
10,752 KB
testcase_19 AC 33 ms
10,752 KB
testcase_20 AC 41 ms
10,880 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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