結果

問題 No.946 箱箱箱
ユーザー %20
提出日時 2019-11-30 05:11:24
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 228 bytes
コンパイル時間 2,200 ms
コンパイル使用メモリ 192,492 KB
最終ジャッジ日時 2025-01-08 06:25:03
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample WA * 3
other WA * 51
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;

int main(){cin.tie(0);ios::sync_with_stdio(false);
	int N;cin>>N;
	assert(1<=N&&N<=2000);
	for(int i=0;i<N;++i){
		long long A;cin>>A;
		assert(1<=A&&A<=1000000000);
	}
	return 0;
}
0