結果

問題 No.318 学学学学学
ユーザー しらっ亭しらっ亭
提出日時 2015-12-17 03:44:32
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 99 ms / 2,000 ms
コード長 550 bytes
コンパイル時間 1,763 ms
コンパイル使用メモリ 170,976 KB
実行使用メモリ 8,704 KB
最終ジャッジ日時 2024-06-22 16:06:01
合計ジャッジ時間 4,857 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 6 ms
6,812 KB
testcase_01 AC 11 ms
6,940 KB
testcase_02 AC 13 ms
6,940 KB
testcase_03 AC 10 ms
6,944 KB
testcase_04 AC 12 ms
6,940 KB
testcase_05 AC 84 ms
8,704 KB
testcase_06 AC 99 ms
7,552 KB
testcase_07 AC 93 ms
6,944 KB
testcase_08 AC 74 ms
6,944 KB
testcase_09 AC 62 ms
6,944 KB
testcase_10 AC 42 ms
6,944 KB
testcase_11 AC 82 ms
8,704 KB
testcase_12 AC 57 ms
6,940 KB
testcase_13 AC 48 ms
6,944 KB
testcase_14 AC 39 ms
6,944 KB
testcase_15 AC 32 ms
6,940 KB
testcase_16 AC 24 ms
6,940 KB
testcase_17 AC 56 ms
8,704 KB
testcase_18 AC 40 ms
6,940 KB
testcase_19 AC 57 ms
8,704 KB
testcase_20 AC 24 ms
6,940 KB
testcase_21 AC 2 ms
6,940 KB
testcase_22 AC 1 ms
6,940 KB
testcase_23 AC 2 ms
6,940 KB
testcase_24 AC 2 ms
6,940 KB
testcase_25 AC 2 ms
6,940 KB
testcase_26 AC 2 ms
6,944 KB
testcase_27 AC 2 ms
6,940 KB
testcase_28 AC 1 ms
6,940 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:20:10: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   20 |     scanf("%d", &ai);
      |     ~~~~~^~~~~~~~~~~

ソースコード

diff #

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

#undef _P
#define _P(...) (void)printf(__VA_ARGS__)
#define REP(i,n) for (int i = 0; i < (n); i++)
// -------------------------------------

typedef pair<int, int> PII;

int A[100001];

int main() {
  int N;
  cin >> N;

  map<int, int> m;
  REP(i, N) {
    int ai;
    scanf("%d", &ai);
    m[ai] = i;
    A[i] = ai;
  }

  set<int> s;
  REP(i, N) {
    if (i > 0) _P(" ");
    int ai = A[i];
    s.insert(ai);
    _P("%d", *s.rbegin());
    if (m[ai] == i) s.erase(ai);
  }
  _P("\n");

  return 0;
}
0