QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#252897 | #7695. Double Up | ucup-team004 | Compile Error | / | / | C++20 | 158b | 2023-11-16 14:29:45 | 2023-11-16 14:29:46 |
Judging History
answer
n = int(input())
S = set()
a = map(int, input().split())
for x in a :
while x in S :
S.remove(x)
x *= 2
S.add(x)
print(max(S))
詳細信息
answer.code:1:1: error: ‘n’ does not name a type 1 | n = int(input()) | ^