C语言编程Time Limit Exceeded问题
Posted CodeToMing
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了C语言编程Time Limit Exceeded问题相关的知识,希望对你有一定的参考价值。
为什么我的代码会Time Limit Exceeded
#include<stdio.h>
int main()
int a,b;
char c;
float d;
int e;
while(scanf("%d%c%d",&a,&c,&b)!=EOF)
switch( c )
case ’ + ':
e=a+b;
printf("%d\\n",e);
break;
case ’ - ':
e=a-b;
printf("%d\\n",e);
break;
case ’ * ':
e=a * b;
printf("%d\\n",e);
break;
case ’ / ':
d=(float)a/b;
printf("%.2f\\n",d);
break;
default: break;
return 0;
以上是关于C语言编程Time Limit Exceeded问题的主要内容,如果未能解决你的问题,请参考以下文章
[Time Limit Exceeded]Quoit Design
python3OJ 1001 487-3279 Time Limit Exceeded
spark 读取mongodb失败,报executor time out 和GC overhead limit exceeded 异常