結果

問題 No.2092 Conjugation
ユーザー 箱星箱星
提出日時 2022-09-15 07:44:54
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 360 bytes
コンパイル時間 2,184 ms
コンパイル使用メモリ 201,204 KB
実行使用メモリ 8,960 KB
最終ジャッジ日時 2024-12-22 03:03:24
合計ジャッジ時間 13,420 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
8,832 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 2 ms
5,248 KB
testcase_04 AC 2 ms
5,248 KB
testcase_05 AC 2 ms
5,248 KB
testcase_06 AC 2 ms
5,248 KB
testcase_07 AC 11 ms
5,248 KB
testcase_08 AC 1,159 ms
5,248 KB
testcase_09 AC 477 ms
5,248 KB
testcase_10 AC 603 ms
5,248 KB
testcase_11 AC 612 ms
5,248 KB
testcase_12 AC 446 ms
5,248 KB
testcase_13 AC 144 ms
5,248 KB
testcase_14 AC 84 ms
5,248 KB
testcase_15 AC 423 ms
5,248 KB
testcase_16 AC 1,623 ms
5,248 KB
testcase_17 TLE -
testcase_18 AC 1,860 ms
5,248 KB
testcase_19 AC 14 ms
8,960 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>

using namespace std;

int main() {
	int n;
	cin >> n;
	vector<int> a(n);
	for (int i = 0; i < n; i++) {
		cin >> a[i];
	}
	for (int i = 1; i <= a[0]; i++) {
		int cnt = 0;
		for (int j = 0; j < n; j++) {
			if (a[j] >= i) {
				cnt++;
			} else {
				break;
			}
		}
		cout << cnt;
		if (i < a[0]) {
			cout << " ";
		}
	}
	return 0;
}
0