結果
| 問題 |
No.191 供託金
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2023-08-12 19:43:52 |
| 言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 397 bytes |
| コンパイル時間 | 1,372 ms |
| コンパイル使用メモリ | 168,720 KB |
| 実行使用メモリ | 6,824 KB |
| 最終ジャッジ日時 | 2024-11-20 10:25:02 |
| 合計ジャッジ時間 | 2,133 ms |
|
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 1 WA * 2 |
| other | WA * 23 |
ソースコード
#include <bits/stdc++.h>
using ll = long long;
using llu = long long unsigned;
using namespace std;
int main() {
int N;
cin >> N;
vector<int> C(N);
ll sum = 0;
for (int i=0; i<N; i++) {
cin >> C[i];
sum += C[i];
}
int result = 0;
for (auto x : C) {
if (x*10 <= sum) { result++; }
}
cout << result * 300000 << endl;
return 0;
}