結果

問題 No.2092 Conjugation
ユーザー laneguelanegue
提出日時 2022-10-07 21:36:03
言語 D
(dmd 2.109.1)
結果
AC  
実行時間 39 ms / 2,000 ms
コード長 240 bytes
コンパイル時間 1,520 ms
コンパイル使用メモリ 176,096 KB
実行使用メモリ 11,892 KB
最終ジャッジ日時 2024-06-22 16:20:29
合計ジャッジ時間 3,057 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 18
権限があれば一括ダウンロードができます

ソースコード

diff #

import std;
void main(){
	auto N = readln.chomp.to!int;
	auto A = readln.split.to!(int[]);
	string[] B;
	auto i = N - 1;
	for(auto j = 0; j < A[0]; j++){
		while(A[i] <= j){
			i--;
		}
		B ~= (i + 1).to!string;
	}
	writeln(B.join(" "));
}
0