UOJ Logo

NOI.AC

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#99829#1120. 大整数减法2017beijiang35310071ms5268kbPython332b2020-02-23 20:57:092020-02-23 20:57:09

answer


详细

小提示:点击横条可展开更详细的信息

Test #1:

score: 20
Accepted
time: 14ms
memory: 5268kb

input:

1212121212121212
9696969696969696969

output:

-9695757575757575757

result:

ok single line: '-9695757575757575757'

Test #2:

score: 20
Accepted
time: 12ms
memory: 5256kb

input:

123
456

output:

-333

result:

ok single line: '-333'

Test #3:

score: 20
Accepted
time: 17ms
memory: 5260kb

input:

0
5

output:

-5

result:

ok single line: '-5'

Test #4:

score: 20
Accepted
time: 15ms
memory: 5256kb

input:

111
555

output:

-444

result:

ok single line: '-444'

Test #5:

score: 20
Accepted
time: 13ms
memory: 5264kb

input:

7654321
1234567

output:

6419754

result:

ok single line: '6419754'