nyoj 803-A/B Problem
Posted getcharzp
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了nyoj 803-A/B Problem相关的知识,希望对你有一定的参考价值。
803-A/B Problem
内存限制:64MB
时间限制:1000ms
特判: No
通过数:2
提交数:4
难度:3
题目描述:
做了A+B Problem,A/B Problem不是什么问题了吧!
输入描述:
每组测试样例一行,首先一个号码A,中间一个或多个空格,然后一个符号( / 或者 % ),然后又是空格,后面又是一个号码B,A可能会很长,B是一个int范围的数。
输出描述:
输出结果。
样例输入:
110 / 100 99 % 10 2147483647 / 2147483647 2147483646 % 2147483647
样例输出:
1 9 1 2147483646
python 未AC:
try: while True: a, b, c = input().split() a = int(a) c = int(c) if b == "/": print("%d" % (a / c)) else: print("%d" % (a % c)) except EOFError: pass
C/C++ AC:(引之runbicheng)
#include<stdio.h> #include<string.h> char str[1000],ch[5]; int main() { int b,s,i,n,f; while(~scanf("%s%s%d",str,&ch,&b)) { s=i=0,f=0; n = strlen(str); if(*ch==‘%‘) { for(i=0; i<n; i++) { s=s*10+str[i]-48; s%=b; } printf("%d ",s); } else { for(i=0; i<n; i++) { s=s*10+str[i]-48; if(s>=b) { printf("%d",s/b); f=1; } else if(f) { putchar(48); } s%=b; } printf(!f?"0 ":" "); } } return 0; }
以上是关于nyoj 803-A/B Problem的主要内容,如果未能解决你的问题,请参考以下文章