编号 | 题目 | 状态 | 分数 | 总时间 | 内存 | 代码 / 答案文件 | 提交者 | 提交时间 |
---|---|---|---|---|---|---|---|---|
#3526 | #1007. 这你也敢信? | Compile Error | 0 | 0 ms | 0 K | C / 114 B | t330034045 | 2023-11-25 15:33:31 |
a = int while a % 2 == 0 : a /= 2 while a >= 3 : a /= 3 if a == 1 : else :
编译信息
/sandbox/1/a.c:1:1: warning: type specifier missing, defaults to 'int' [-Wimplicit-int]
a=int(input())
^
/sandbox/1/a.c:1:3: error: expected expression
a=int(input())
^
/sandbox/1/a.c:9:16: error: expected ';' after top level declarator
print("No")
^
;
1 warning and 2 errors generated.