結果

問題 No.2092 Conjugation
ユーザー daiotadaiota
提出日時 2022-10-14 14:01:11
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 16 ms / 2,000 ms
コード長 425 bytes
コンパイル時間 1,600 ms
コンパイル使用メモリ 165,964 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-06-26 12:37:13
合計ジャッジ時間 2,672 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 18
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function 'int main()':
main.cpp:16:15: warning: 'n' may be used uninitialized [-Wmaybe-uninitialized]
   16 |         int N,n;
      |               ^

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;

#define REP(i,n) for(int i=0;i<int(n);i++)
typedef long long ll;
typedef pair<int,int> P;

int a[100010];

int main(void){
	int i;

	cin.tie(0);  ios_base::sync_with_stdio(false);

	int N,n;
	cin >> N;
	for(i=1;i<=N;i++){
		int x;
		cin >> x;
		if(i==1) n=x;
		a[x]++;
	}

	for(i=n;i>=1;i--) a[i]+=a[i+1];

	for(i=1;i<=n;i++) cout << a[i] << ' ';
	cout << endl;


	return 0;
}
0