結果

問題 No.504 ゲーム大会(ランキング)
ユーザー Imperi_NightImperi_Night
提出日時 2018-08-18 01:24:57
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 22 ms / 2,000 ms
コード長 376 bytes
コンパイル時間 268 ms
コンパイル使用メモリ 36,352 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-04-20 00:31:57
合計ジャッジ時間 1,221 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 1 ms
5,376 KB
testcase_04 AC 1 ms
5,376 KB
testcase_05 AC 1 ms
5,376 KB
testcase_06 AC 1 ms
5,376 KB
testcase_07 AC 21 ms
5,376 KB
testcase_08 AC 22 ms
5,376 KB
testcase_09 AC 22 ms
5,376 KB
testcase_10 AC 21 ms
5,376 KB
testcase_11 AC 21 ms
5,376 KB
testcase_12 AC 19 ms
5,376 KB
testcase_13 AC 18 ms
5,376 KB
testcase_14 AC 21 ms
5,376 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:8:10: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
    8 |     scanf("%d",&N);
      |     ~~~~~^~~~~~~~~
main.cpp:11:30: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   11 |     for(int i=0;i<N;i++)scanf("%d",&a[i]);
      |                         ~~~~~^~~~~~~~~~~~

ソースコード

diff #

#include <cstdio>
#include <vector>

using namespace std;

int main(){
    int N;
    scanf("%d",&N);
    vector<int> a(N);
    vector<int> rank(N);
    for(int i=0;i<N;i++)scanf("%d",&a[i]);
    rank[0]=1;
    for(int i=1;i<N;i++){
        if(a[i]>a[0])rank[i]=rank[i-1]+1;
        else rank[i]=rank[i-1];
    }
    for(int i=0;i<N;i++)printf("%d\n",rank[i]);
    return 0;
}
0