結果

問題 No.481 1から10
ユーザー 西尾
提出日時 2017-09-13 15:45:58
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 217 bytes
コンパイル時間 1,675 ms
コンパイル使用メモリ 164,740 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-11-07 19:49:34
合計ジャッジ時間 2,139 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 7 WA * 1
権限があれば一括ダウンロードができます

ソースコード

diff #

//No.481 1から10

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

int main()
{
int i;
int B;

	for( i = 1; i < 10; i++ )
	{
		cin >> B;
		if( B != i )
		{
			cout << i << endl;

			return 0;
		}
	}

	return 0;
}




0