一,WA自动机

1 #include <cstdio>
2 using namespace std;
3 int main()
4 {
5     printf("");
6     return 0;
7 }

二,TLE自动机

1 #include <cstdio>
2 using namespace std;
3 int main()
4 {
5     for(;;);
6     return 0;
7 }

三,MLE自动机

1 #include <cstdio>
2 #include <vector>
3 using namespace std;
4 vector<int> a;
5 int main()
6 {
7     for(;;)a.push_back(1);
8     return 0;
9 }

四,RE自动机

1 #include <cstdio>
2 using namespace std;
3 int a[10];
4 int main()
5 {
6     a[99999999999999999999]=1;
7     return 0;
8 }

五,CE自动机

#include <cstdio>
using namespace std;
int main()
{
    1
}

 

相关文章:

猜你喜欢
  • 2021-11-30
  • 2021-05-10
  • 2021-11-30
  • 2021-10-25
  • 2021-10-23
相关资源
相似解决方案