結果
問題 | No.2815 Smaller than all |
ユーザー | keisuke6 |
提出日時 | 2024-07-01 14:48:20 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 378 bytes |
コンパイル時間 | 2,241 ms |
コンパイル使用メモリ | 206,016 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-07-01 14:48:30 |
合計ジャッジ時間 | 9,690 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | AC | 2 ms
6,944 KB |
testcase_02 | RE | - |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | AC | 2 ms
6,940 KB |
testcase_06 | AC | 2 ms
6,940 KB |
testcase_07 | AC | 3 ms
6,948 KB |
testcase_08 | AC | 90 ms
6,940 KB |
testcase_09 | AC | 86 ms
6,940 KB |
testcase_10 | AC | 87 ms
6,944 KB |
testcase_11 | AC | 87 ms
6,940 KB |
testcase_12 | RE | - |
testcase_13 | RE | - |
testcase_14 | RE | - |
testcase_15 | RE | - |
testcase_16 | RE | - |
testcase_17 | RE | - |
testcase_18 | RE | - |
testcase_19 | RE | - |
testcase_20 | RE | - |
testcase_21 | RE | - |
testcase_22 | RE | - |
testcase_23 | RE | - |
testcase_24 | RE | - |
testcase_25 | RE | - |
testcase_26 | RE | - |
testcase_27 | RE | - |
testcase_28 | RE | - |
testcase_29 | RE | - |
testcase_30 | RE | - |
testcase_31 | RE | - |
ソースコード
#include<bits/stdc++.h> using namespace std; #define int long long signed main() { int N; cin>>N; vector<int> A(N); for(int i=0;i<N;i++) cin>>A[i]; vector<int> B = A; sort(B.begin(),B.end()); if(A != B){ assert(false); cout<<1<<endl; return 0; } int ans = 0; while(ans != N && A[ans] == A[0]) ans++; cout<<ans<<endl; }