結果
問題 | No.2815 Smaller than all |
ユーザー | kotatsugame |
提出日時 | 2024-07-19 23:41:01 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 27 ms / 2,000 ms |
コード長 | 302 bytes |
コンパイル時間 | 522 ms |
コンパイル使用メモリ | 65,348 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-07-20 12:38:52 |
合計ジャッジ時間 | 2,614 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 2 |
other | AC * 32 |
ソースコード
#include<iostream> #include<cassert> using namespace std; int N,A[2<<17]; int main() { ios::sync_with_stdio(false); cin.tie(nullptr); cin>>N; for(int i=0;i<N;i++)cin>>A[i]; int up=0; while(up<N-1&&A[up]>=A[up+1])up++; int same=0; for(int i=up;i>=0&&A[i]==A[up];i--)same++; cout<<same<<endl; }