复赛代码这样写吗?("apple"为题目名)
#include<bits/stdc++.h> using namespace std; int main(){ freopen("apple.in","r",stdin); freopen("apple.out","w",stdout); ios::sync_with_stdio(false); cin.tie(0); cout.tie(0); //.... return 0; }