比赛 2025暑期集训第7场 评测结果 W
题目名称 天气预报 最终得分 0
用户昵称 pcx 运行时间 0.005 s
代码语言 C++ 内存使用 3.73 MiB
提交时间 2025-08-11 17:04:35
显示代码纯文本
#include<bits/stdc++.h>
using namespace std;
int n,m,s;
int main(){
    freopen("weather_forecast.in","r",stdin);
    freopen("weather_forecast.out","w",stdout);
    ios::sync_with_stdio(0);
    cin.tie(0);
    while(cin>>n){
        if(!n) break;
        for(int i=1;i<=n;i++){
            for(int j=1;j<=16;j++){
                int a;
                cin>>a;
            }
        }
        cout<<1<<endl;
    }
    return 0;
}