結果

問題 No.360 増加門松列
ユーザー koyumeishikoyumeishi
提出日時 2016-04-17 03:33:14
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 197 bytes
コンパイル時間 534 ms
コンパイル使用メモリ 62,848 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-10-04 10:23:29
合計ジャッジ時間 1,314 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other WA * 22
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <cassert>

using namespace std;


int main(){
	int n = 7;
	int x;
	for(int i=0; i<n; i++){
		cin >> x;
		assert(1<=x && x<=100);
	}

	assert( !(cin>>x) );

	return 0;
}
0