Submission #00098
ソースコード
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 | #include<bits/stdc++.h> using namespace std; int main(){ int n,m,max=1,b; cin>>n>>m; vector< int > a(n,0),c(1000,0); for ( int i=1;i<=n;i++){ cin>>a[i]; } for ( int i=0;i<m;i++){ cin>>b; for ( int j=1;j<=n;j++){ if (b>=a[j]){ c[j]++; break ; } } } for ( int i=1;i<=n;i++){ if (c[max]<c[i])max=i; } cout<<max<<endl; return 0; } |
ステータス
項目 | データ |
---|---|
問題 | 0002 - 投票(vote) |
ユーザー名 | ei1626 |
投稿日時 | 2016-12-02 16:59:49 |
言語 | C++11 |
状態 | Runtime Error |
得点 | 60 |
ソースコード長 | 394 Byte |
最大実行時間 | 30 ms |
最大メモリ使用量 | 488 KB |
セット
セット | 得点 | Cases | |
---|---|---|---|
1 | 入力1 | 0 / 20 | *1.txt |
2 | 入力2 | 0 / 20 | *[12].txt |
3 | 入力3 | 20 / 20 | *[1-3].txt |
4 | 入力4 | 20 / 20 | *[1-4].txt |
5 | 入力5 | 20 / 20 | *[1-5].txt |
テストケース
ファイル名 | 状態 | 実行時間 | メモリ使用量 | # | ||||
---|---|---|---|---|---|---|---|---|
2014-yo-t2-in1.txt | RE | 30 ms | 480 KB |
1
|
2
|
3
|
4
|
5
|
2014-yo-t2-in2.txt | RE | 29 ms | 440 KB |
2
|
3
|
4
|
5
|
|
2014-yo-t2-in3.txt | AC | 28 ms | 412 KB |
3
|
4
|
5
|
||
2014-yo-t2-in4.txt | AC | 17 ms | 388 KB |
4
|
5
|
|||
2014-yo-t2-in5.txt | AC | 19 ms | 488 KB |
5
|