結果

問題 No.2815 Smaller than all
ユーザー risujirohrisujiroh
提出日時 2024-07-19 23:18:25
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 330 bytes
コンパイル時間 3,265 ms
コンパイル使用メモリ 250,724 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-07-20 00:08:08
合計ジャッジ時間 4,919 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 4 ms
5,248 KB
testcase_03 AC 4 ms
5,376 KB
testcase_04 AC 21 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 27 ms
5,376 KB
testcase_09 AC 28 ms
5,376 KB
testcase_10 AC 27 ms
5,376 KB
testcase_11 AC 27 ms
5,376 KB
testcase_12 AC 27 ms
5,376 KB
testcase_13 AC 25 ms
5,376 KB
testcase_14 AC 26 ms
5,376 KB
testcase_15 AC 26 ms
5,376 KB
testcase_16 AC 25 ms
5,376 KB
testcase_17 AC 22 ms
5,376 KB
testcase_18 AC 25 ms
5,376 KB
testcase_19 AC 25 ms
5,376 KB
testcase_20 AC 23 ms
5,376 KB
testcase_21 AC 27 ms
5,376 KB
testcase_22 AC 26 ms
5,376 KB
testcase_23 AC 23 ms
5,376 KB
testcase_24 AC 26 ms
5,376 KB
testcase_25 AC 26 ms
5,376 KB
testcase_26 AC 23 ms
5,376 KB
testcase_27 AC 24 ms
5,376 KB
testcase_28 AC 26 ms
5,376 KB
testcase_29 AC 24 ms
5,376 KB
testcase_30 AC 27 ms
5,376 KB
testcase_31 AC 26 ms
5,376 KB
testcase_32 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using Int = int64_t;

void Solve() {
  Int n;
  std::cin >> n;
  std::vector<Int> a(n);
  for (Int i = 0; i < n; ++i) {
    std::cin >> a[i];
  }
  std::cout << std::ranges::count(a, std::ranges::min(a)) << '\n';
}

int main() {
  std::ios::sync_with_stdio(false);
  std::cin.tie(nullptr);

  Solve();
}
0