結果

問題 No.318 学学学学学
ユーザー ei1333333ei1333333
提出日時 2016-02-18 12:52:40
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 94 ms / 2,000 ms
コード長 434 bytes
コンパイル時間 1,892 ms
コンパイル使用メモリ 171,992 KB
実行使用メモリ 10,532 KB
最終ジャッジ日時 2024-06-22 16:19:30
合計ジャッジ時間 4,447 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 6 ms
6,816 KB
testcase_01 AC 11 ms
6,940 KB
testcase_02 AC 14 ms
6,940 KB
testcase_03 AC 9 ms
6,940 KB
testcase_04 AC 13 ms
6,944 KB
testcase_05 AC 83 ms
10,388 KB
testcase_06 AC 94 ms
9,228 KB
testcase_07 AC 88 ms
8,448 KB
testcase_08 AC 77 ms
7,404 KB
testcase_09 AC 64 ms
6,940 KB
testcase_10 AC 41 ms
6,944 KB
testcase_11 AC 80 ms
10,532 KB
testcase_12 AC 56 ms
8,060 KB
testcase_13 AC 48 ms
7,404 KB
testcase_14 AC 36 ms
6,944 KB
testcase_15 AC 32 ms
6,944 KB
testcase_16 AC 23 ms
6,940 KB
testcase_17 AC 52 ms
8,912 KB
testcase_18 AC 39 ms
7,436 KB
testcase_19 AC 54 ms
9,080 KB
testcase_20 AC 23 ms
6,940 KB
testcase_21 AC 1 ms
6,944 KB
testcase_22 AC 1 ms
6,940 KB
testcase_23 AC 2 ms
6,944 KB
testcase_24 AC 1 ms
6,944 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,944 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:9:8: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
    9 |   scanf("%d", &N);
      |   ~~~~~^~~~~~~~~~
main.cpp:11:10: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   11 |     scanf("%d", &A[i]);
      |     ~~~~~^~~~~~~~~~~~~

ソースコード

diff #

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

int main()
{
  int N, A[100000];
  map< int, int > last;

  scanf("%d", &N);
  for(int i = 0; i < N; i++) {
    scanf("%d", &A[i]);
    last[A[i]] = i;
  }
  stringstream sss;
  set< int > sets;
  for(int i = 0; i < N; i++) {
    if(i > 0) sss << " ";
    sets.insert(A[i]);
    sss << *sets.rbegin();
    if(last[A[i]] == i) sets.erase(A[i]);
  }
  printf("%s\n", sss.str().c_str());
}
0