比赛 2025暑期集训第7场 评测结果 W
题目名称 天气预报 最终得分 0
用户昵称 ChenBp 运行时间 0.010 s
代码语言 C++ 内存使用 3.75 MiB
提交时间 2025-08-11 17:22:00
显示代码纯文本
#include <iostream>
using namespace std;
int main() {
    freopen("weather_forecast.in", "r", stdin);
    freopen("weather_forecast.out", "w", stdout);
    int n, t;
    while (cin >> n) {
        if (n == 0)
            return 0;
        for (int i = 1; i <= n * 16; i++) {
            cin >> t;
        }
        cout << 0 << endl;
    }
    return 0;
}