結果
| 問題 |
No.504 ゲーム大会(ランキング)
|
| コンテスト | |
| ユーザー |
Torin3600
|
| 提出日時 | 2017-05-08 23:57:52 |
| 言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
| 結果 |
AC
|
| 実行時間 | 181 ms / 2,000 ms |
| コード長 | 215 bytes |
| コンパイル時間 | 511 ms |
| コンパイル使用メモリ | 54,240 KB |
| 実行使用メモリ | 5,376 KB |
| 最終ジャッジ日時 | 2024-09-14 17:40:11 |
| 合計ジャッジ時間 | 2,935 ms |
|
ジャッジサーバーID (参考情報) |
judge2 / judge6 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 13 |
ソースコード
#include<iostream>
using namespace std;
int main() {
int n = 0;
int r = 1;
cin >> n;
int *p = new int[n];
for (int i = 0; i < n; i++) {
cin >> p[i];
if (p[0] < p[i]) {
r++;
}
cout << r << endl;
}
}
Torin3600