結果

問題 No.504 ゲーム大会(ランキング)
ユーザー ohreitetsuohreitetsu
提出日時 2018-07-12 22:12:20
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 169 ms / 2,000 ms
コード長 228 bytes
コンパイル時間 438 ms
コンパイル使用メモリ 63,232 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-10-04 09:45:13
合計ジャッジ時間 2,874 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 1 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 2 ms
5,248 KB
testcase_04 AC 1 ms
5,248 KB
testcase_05 AC 2 ms
5,248 KB
testcase_06 AC 2 ms
5,248 KB
testcase_07 AC 166 ms
5,248 KB
testcase_08 AC 161 ms
5,248 KB
testcase_09 AC 153 ms
5,248 KB
testcase_10 AC 169 ms
5,248 KB
testcase_11 AC 153 ms
5,248 KB
testcase_12 AC 149 ms
5,248 KB
testcase_13 AC 148 ms
5,248 KB
testcase_14 AC 158 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
using namespace std;
int main(int argc, char* argv[])
{
	int N,i;
	cin>>N;
	int A,A0,No=1;
	cin>>A0;
	cout<<No<<endl;
	for (i=2;i<=N;i++){
		cin>>A;
		if (A>A0){
			No++;
		}
		cout<<No<<endl;
	}
	return 0;
}
0