結果

問題 No.1594 Three Classes
ユーザー realDivineJKrealDivineJK
提出日時 2021-07-25 16:40:17
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 257 bytes
コンパイル時間 186 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 10,880 KB
最終ジャッジ日時 2024-07-21 00:53:09
合計ジャッジ時間 20,892 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 AC 31 ms
10,880 KB
testcase_02 AC 31 ms
10,624 KB
testcase_03 AC 67 ms
10,752 KB
testcase_04 TLE -
testcase_05 AC 1,979 ms
10,752 KB
testcase_06 AC 68 ms
10,752 KB
testcase_07 AC 112 ms
10,624 KB
testcase_08 TLE -
testcase_09 TLE -
testcase_10 AC 1,996 ms
10,880 KB
testcase_11 AC 1,983 ms
10,880 KB
testcase_12 TLE -
testcase_13 AC 31 ms
10,752 KB
testcase_14 AC 432 ms
10,752 KB
testcase_15 AC 259 ms
10,752 KB
testcase_16 AC 145 ms
10,624 KB
testcase_17 AC 103 ms
10,752 KB
testcase_18 AC 30 ms
10,752 KB
testcase_19 AC 36 ms
10,752 KB
testcase_20 AC 43 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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