UOJ Logo

NOI.AC

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#100424#1120. 大整数减法Choimoe10078ms5260kbPython342b2020-02-24 19:30:332020-02-24 19:30:34

answer


详细

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

Test #1:

score: 20
Accepted
time: 16ms
memory: 5248kb

input:

1212121212121212
9696969696969696969

output:

-9695757575757575757

result:

ok single line: '-9695757575757575757'

Test #2:

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

input:

123
456

output:

-333

result:

ok single line: '-333'

Test #3:

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

input:

0
5

output:

-5

result:

ok single line: '-5'

Test #4:

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

input:

111
555

output:

-444

result:

ok single line: '-444'

Test #5:

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

input:

7654321
1234567

output:

6419754

result:

ok single line: '6419754'