結果
| 問題 | No.1594 Three Classes |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2022-10-21 14:37:31 |
| 言語 | PyPy3 (7.3.17) |
| 結果 |
AC
|
| 実行時間 | 443 ms / 2,000 ms |
| コード長 | 552 bytes |
| 記録 | |
| コンパイル時間 | 296 ms |
| コンパイル使用メモリ | 85,460 KB |
| 実行使用メモリ | 82,060 KB |
| 最終ジャッジ日時 | 2026-03-21 15:08:17 |
| 合計ジャッジ時間 | 5,808 ms |
|
ジャッジサーバーID (参考情報) |
judge2_0 / judge1_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 18 |
ソースコード
#int(input())
#map(int, input().split())
#list(map(int, input().split()))
N = int(input())
A = list(map(int, input().split()))
def base10int(value, base):
if (int(value / base)):
return base10int(int(value / base), base) + str(value % base)
return str(value % base)
ans = 0
for i in range(3 ** N):
b = base10int(i, 3)
b = format(b, ">0" + str(N))
p = [0] * 3
for j in range(N):
p[int(b[j])] += A[j]
if min(p) == max(p):
ans = 1
break
if ans == 1:
print("Yes")
else:
print("No")