結果
問題 | No.5 数字のブロック |
ユーザー | Namu3 |
提出日時 | 2020-01-05 13:11:34 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 980 bytes |
コンパイル時間 | 2,254 ms |
コンパイル使用メモリ | 179,784 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-11-22 21:57:13 |
合計ジャッジ時間 | 3,372 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | AC | 2 ms
5,248 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | AC | 5 ms
5,248 KB |
testcase_20 | WA | - |
testcase_21 | AC | 2 ms
5,248 KB |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | WA | - |
testcase_31 | WA | - |
testcase_32 | WA | - |
testcase_33 | WA | - |
ソースコード
#pragma GCC optimize("Ofast") #include <bits/stdc++.h> #define rep(i,n) for (int i = 0; i < (n); ++i) #define REP(i,a,b) for (int i = a; i < (b); ++i) #define all(x) (x).begin(),(x).end() const int INF = 1000000007; typedef long long ll; using namespace std; template<class T> inline bool chmax(T& a, T b) { if (a < b) { a = b; return 1; } return 0; } template<class T> inline bool chmin(T& a, T b) { if (a > b) { a = b; return 1; } return 0; } ll gcd(ll a, ll b) { return b ? gcd(b, a%b) : a; } ll lcm(ll a, ll b) { return (a * b) / gcd(a,b); } ll fac(ll a) { return a > 1 ? fac(a - 1) * a : 1; } int solve(){ int N,L; cin >> N >> L; vector<int>v(N); rep(i,N)cin >> v[i]; sort(all(v)); ll now = 0; rep(i,N){ if(L - v[i] >= 0){ now++; L -= v[i]; } else break; } cout << now << endl; return 0; } int main(){ // ios::sync_with_stdio(false);cin.tie(nullptr); // cout << fixed;cout << setprecision(16) << endl; solve(); return 0; }