結果

問題 No.504 ゲーム大会(ランキング)
ユーザー r-yanyor-yanyo
提出日時 2017-04-21 22:48:33
言語 C++11
(gcc 13.3.0)
結果
AC  
実行時間 155 ms / 2,000 ms
コード長 420 bytes
コンパイル時間 1,508 ms
コンパイル使用メモリ 159,060 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-07-20 05:37:59
合計ジャッジ時間 3,511 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 13
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘ll read()’:
main.cpp:12:14: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   12 |         scanf("%lld",&i);
      |         ~~~~~^~~~~~~~~~~

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

using ll=long long;
#define int ll

#define FOR(i,a,b) for(int i=int(a);i<int(b);i++)
#define REP(i,b) FOR(i,0,b)

int read(){
	int i;
	scanf("%lld",&i);
	return i;
}

signed main(){
	// your code goes here
	int N = read();
	int a[N];
	int rank = 1;
	a[0] = read();
	cout << rank << endl;
	FOR(i,1,N){
		a[i] = read();
		if(a[0] < a[i]) rank++;
		cout << rank << endl;
	}
}
0