結果

問題 No.2092 Conjugation
ユーザー 箱星箱星
提出日時 2022-09-15 07:47:14
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 506 bytes
コンパイル時間 2,178 ms
コンパイル使用メモリ 202,864 KB
実行使用メモリ 10,752 KB
最終ジャッジ日時 2024-06-01 16:40:20
合計ジャッジ時間 13,462 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
10,752 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 9 ms
5,376 KB
testcase_08 AC 1,517 ms
5,376 KB
testcase_09 AC 610 ms
5,376 KB
testcase_10 AC 771 ms
5,376 KB
testcase_11 AC 795 ms
5,376 KB
testcase_12 AC 566 ms
5,376 KB
testcase_13 AC 186 ms
5,376 KB
testcase_14 AC 103 ms
5,376 KB
testcase_15 AC 548 ms
5,376 KB
testcase_16 TLE -
testcase_17 TLE -
testcase_18 -- -
testcase_19 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
#pragma GCC target("avx2")
#pragma GCC optimize("O3")
#pragma GCC optimize("unroll-loops")

using namespace std;

int main() {
    ios::sync_with_stdio(false);
    cin.tie(nullptr);
	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