hack
  • 板块P1001 A+B Problem
  • 楼主Abeeel51
  • 当前回复6
  • 已保存回复6
  • 发布时间2024/10/14 19:41
  • 上次更新2024/10/14 20:58:51
查看原帖
hack
298132
Abeeel51楼主2024/10/14 19:41

提交代码:

#include <bits/stdc++.h>
using namespace std;
int main(){
    int a,b;
    cin>>a>>b;
    while(b--) a++;
    cout<<a<<endl;
}

你会发现 100 分。

hack #1:

input

1 -1

output

0

hack #2:

input

-1000000000 1000000000

output

0
2024/10/14 19:41
加载中...