結果

問題 No.8100 始業式
ユーザー keisuke6
提出日時 2023-03-31 21:34:04
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 346 bytes
コンパイル時間 1,655 ms
コンパイル使用メモリ 193,624 KB
最終ジャッジ日時 2025-02-11 20:00:58
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other WA * 1
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#define int long long
signed main(){
    int T;
    cin>>T;
    while(T--){
        int N;
        cin>>N;
        int ans = 0;
        for(int i=0;i<N;i++){
            int a;
            cin>>a;
            ans += a;
        }
        for(int i=0;i<=N;i++) cout<<i<<' ';
        cout<<endl;
    }
}
0