結果
問題 |
No.79 過小評価ダメ・ゼッタイ
|
ユーザー |
![]() |
提出日時 | 2018-03-13 01:39:39 |
言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 455 bytes |
コンパイル時間 | 534 ms |
コンパイル使用メモリ | 39,756 KB |
実行使用メモリ | 6,824 KB |
最終ジャッジ日時 | 2024-11-15 22:59:30 |
合計ジャッジ時間 | 1,537 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 20 WA * 2 |
コンパイルメッセージ
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 = 0, res = 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); }