QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#164560#4274. $2x + 2$__mjjWA 13ms8052kbPython369b2023-09-05 09:26:572023-09-05 09:26:57

Judging History

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

  • [2023-09-05 09:26:57]
  • 评测
  • 测评结果:WA
  • 用时:13ms
  • 内存:8052kb
  • [2023-09-05 09:26:57]
  • 提交

answer

import math

a = float(input())

print(int(math.ceil(a * 2 / 3)))

Details

Tip: Click on the bar to expand more detailed information

Test #1:

score: 100
Accepted
time: 10ms
memory: 8048kb

input:

4

output:

3

result:

ok answer is '3'

Test #2:

score: 0
Accepted
time: 5ms
memory: 7980kb

input:

10000000000

output:

6666666667

result:

ok answer is '6666666667'

Test #3:

score: 0
Accepted
time: 13ms
memory: 8052kb

input:

11537

output:

7692

result:

ok answer is '7692'

Test #4:

score: 0
Accepted
time: 8ms
memory: 8016kb

input:

41309

output:

27540

result:

ok answer is '27540'

Test #5:

score: -100
Wrong Answer
time: 0ms
memory: 8032kb

input:

8191927142339937565554845978095081242540169480073285738552305926582959325059543812213073905385467089

output:

5461284761559958683814998530465744580570507228599942170852538047802726367587941714753220258306195456

result:

wrong answer expected '546128476155995837703656398539...9550039695874808715936923644727', found '546128476155995868381499853046...6367587941714753220258306195456'