結果
問題 | No.2092 Conjugation |
ユーザー | AFLeartLey0103 |
提出日時 | 2022-10-07 21:31:07 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 41 ms / 2,000 ms |
コード長 | 333 bytes |
コンパイル時間 | 1,635 ms |
コンパイル使用メモリ | 168,460 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-06-12 06:16:07 |
合計ジャッジ時間 | 3,080 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 2 |
other | AC * 18 |
ソースコード
#include<bits/stdc++.h> using namespace std; int main(){ int n; cin >> n; int diff = 0; vector<int> arr(n); for(int i = 0;i<n;++i){ cin >> arr[i]; } int ptr = n-1; while(diff < arr[0]){ while(arr[ptr]-diff==0)ptr--; cout << ptr + 1 << ' '; diff++; } return 0; }