結果
問題 | No.191 供託金 |
ユーザー | 沙耶花 |
提出日時 | 2021-11-04 05:40:28 |
言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 2 ms / 5,000 ms |
コード長 | 395 bytes |
コンパイル時間 | 4,302 ms |
コンパイル使用メモリ | 250,708 KB |
最終ジャッジ日時 | 2025-01-25 11:18:24 |
ジャッジサーバーID (参考情報) |
judge2 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 23 |
ソースコード
#include <stdio.h> #include <bits/stdc++.h> #include <atcoder/all> using namespace atcoder; using mint = modint; using namespace std; #define rep(i,n) for (int i = 0; i < (n); ++i) #define Inf 1000000001 int main(){ int n; cin>>n; int s = 0; vector<int> c(n); rep(i,n){ cin>>c[i]; s += c[i]; } int ans = 0; rep(i,n){ if(c[i]*10<=s)ans+=30; } cout<<ans<<endl; return 0; }