結果

問題 No.1594 Three Classes
ユーザー pluto77pluto77
提出日時 2022-02-11 10:58:25
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 190 bytes
コンパイル時間 161 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 10,752 KB
最終ジャッジ日時 2024-11-16 08:36:50
合計ジャッジ時間 20,719 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,963 ms
10,624 KB
testcase_01 AC 25 ms
10,624 KB
testcase_02 AC 25 ms
10,624 KB
testcase_03 AC 59 ms
10,752 KB
testcase_04 AC 1,938 ms
10,752 KB
testcase_05 AC 1,947 ms
10,624 KB
testcase_06 AC 65 ms
10,624 KB
testcase_07 AC 109 ms
10,496 KB
testcase_08 TLE -
testcase_09 AC 1,949 ms
10,624 KB
testcase_10 TLE -
testcase_11 TLE -
testcase_12 AC 1,993 ms
10,624 KB
testcase_13 AC 27 ms
10,496 KB
testcase_14 AC 447 ms
10,496 KB
testcase_15 AC 255 ms
10,624 KB
testcase_16 AC 139 ms
10,624 KB
testcase_17 AC 98 ms
10,624 KB
testcase_18 AC 29 ms
10,496 KB
testcase_19 AC 34 ms
10,496 KB
testcase_20 AC 41 ms
10,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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