QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#60730#5006. HeximalJesCompile Error//C++1466b2022-11-06 21:46:232022-11-06 21:46:24

Judging History

你现在查看的是最新测评结果

  • [2023-08-10 23:21:45]
  • System Update: QOJ starts to keep a history of the judgings of all the submissions.
  • [2022-11-06 21:46:24]
  • 评测
  • [2022-11-06 21:46:23]
  • 提交

answer

s=int(input ())
a=1
while (s>=6):
    a+=1
    s/=6
print (a)

详细

answer.code:1:1: error: ‘s’ does not name a type
    1 | s=int(input ())
      | ^