結果

問題 No.1808 Fullgold Alchemist
ユーザー incuiioincuiio
提出日時 2023-05-12 06:55:38
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 648 bytes
コンパイル時間 1,569 ms
コンパイル使用メモリ 131,900 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-05-05 23:27:55
合計ジャッジ時間 4,574 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include <iostream>
#include <fstream>
#include <iomanip>
#include <vector>
#include <algorithm>
#include <cmath>
#include <unordered_map>
#include <map>
#include <queue>
#include <string>
#include <set>
#include <list>
#include <climits>
#include <bitset>
#include <numeric>
#include <cassert>
#include <regex>
using std::cout;
using std::cin;
using std::string;
using std::vector;

int main()
{
    int n, m;
    cin >> n >> m;
    vector<int> arr(n);
    long long average = 0;
    for (int i = 0; i < n; i++)
    {
        cin >> arr[i];
        average += arr[i];
    }
    average /= n;
    cout << std::min(average, (long long)arr[0]) / m;
}
0