C. C. Blog

Security Research, Algorithm and Data Structure

51 Nod1029 大数除法

Problem

给出2个大整数A,B,计算A / B和A Mod B的结果。

Solution

Code

1
2
3
4
5
a=int(input())
b=int(input())
c=a//b
print(c)
print(a-c*b)
  • 本文作者: CCWUCMCTS
  • 本文链接: https://ccwucmcts.github.io/posts/53233/
  • 版权声明: 本博客所有文章除特别声明外,均采用 BY-NC-SA 许可协议。转载请注明出处!