【三三信奥】2025 练习赛 4
Done
IOI(Strict)
Start at: 2025-8-20 9:00
3
hour(s)
Host:
77
最后一场,来个 IOI 严格模式和文件输入输出,大家加油!
文件输入输出
CSP-J/S 以及 NOI 系列赛事基本都是文件输入输出的。在 33OJ 中,如果一道题目需要文件 IO,会在标题下面注明 文件 IO 以及题目英文名。
如果你不想要文件 IO 的形式调试,那么只要写完代码后,在 main 函数开头加入下面两行这样格式的代码再提交即可。
freopen("题目英文名.in", "r", stdin);
freopen("题目英文名.out", "w", stdout);
#include <bits/stdc++.h>
using namespace std;
int main()
{
freopen("a+b.in", "r", stdin);
freopen("a+b.out", "w", stdout);
ios::sync_with_stdio(false); // 输入输出加速,不需要的话可以不写
cin.tie(0); // 输入输出加速,不需要的话可以不写
int a, b;
cin >> a >> b;
cout << a + b;
return 0;
}
【三三信奥】2025 练习赛 4
每场练习赛七道题,会有改题面的原题,但也都会是我觉得值得做的题目,并且都会按照 OI 模式造部分分。
赛后会开放所有题目以及数据,欢迎老师无限制使用(需要的老师可以加一下 Open 33OI 项目 QQ 群:515497602)。
| 题目编号 | 对应比赛 | ||
|---|---|---|---|
| A | 语法比赛 | ||
| B | |||
| C | CSP-J | ||
| D | |||
| E | CSP-S | ||
| F | |||
| G | |||
The contest is a flexible time contest. You need to complete the contest within a specified time after you attended.
- Status
- Done
- Rule
- IOI(Strict)
- Problem
- 7
- Start at
- 2025-8-20 9:00
- End at
- 2025-8-22 12:00
- Duration
- 3 hour(s)
- Host
- Partic.
- 77