有没有能单个样例2ms过的

P1001 A+B Problem

sumlen @ 2023-09-27 21:02:27

求一个目前代码时间最优解(不考虑空间,只要不爆MLE就行)


by zhanghe724_1 @ 2023-11-05 16:51:02

https://www.luogu.com.cn/record/133533975 return 0就3ms


by dulinfan2023 @ 2023-12-23 16:06:21

试试删掉using namespace std;

#include<iostream>
int main(){
  int a,b;
  std::cin>>a>>b;
  std::cout<<a+b;
}

上一页 |