結果
| 問題 |
No.79 過小評価ダメ・ゼッタイ
|
| コンテスト | |
| ユーザー |
AQUA16573837
|
| 提出日時 | 2018-03-13 01:41:08 |
| 言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
| 結果 |
AC
|
| 実行時間 | 12 ms / 5,000 ms |
| コード長 | 458 bytes |
| コンパイル時間 | 407 ms |
| コンパイル使用メモリ | 40,136 KB |
| 実行使用メモリ | 5,376 KB |
| 最終ジャッジ日時 | 2024-06-26 08:25:03 |
| 合計ジャッジ時間 | 1,287 ms |
|
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 22 |
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:10:14: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
10 | scanf("%d", &n);
| ~~~~~^~~~~~~~~~
main.cpp:12:22: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
12 | scanf("%d", L + i);
| ~~~~~^~~~~~~~~~~~~
ソースコード
#include <stdio.h>
#include <algorithm>
#include <deque>
using namespace std;
using ll = long long;
//79
int main() {
int n, L[100000];
scanf("%d", &n);
for (int i = 0; i < n; i++)
scanf("%d", L + i);
sort(L, L + n);
int carry = 1, mcarry = 1, res = L[0];
for (int i = 1; i < n; i++) {
if (L[i] != L[i - 1]) {
carry = 1;
} else {
carry++;
}
mcarry = max(mcarry, carry);
if (mcarry == carry)
res = L[i];
}
printf("%d\n", res);
}
AQUA16573837