Submission #4160902


Source Code Expand

#include<bits/stdc++.h>
#define rep(i,a,b) for(int i=a;i<b;i++)
#define rrep(i,a,b) for(int i=a;i>=b;i--)
#define fore(i,a) for(auto &i:a)
#define all(x) (x).begin(),(x).end()
//#pragma GCC optimize ("-O3")
using namespace std; void _main(); int main() { cin.tie(0); ios::sync_with_stdio(false); _main(); }
typedef long long ll; const int inf = INT_MAX / 2; const ll infl = 1LL << 60;
template<class T>bool chmax(T &a, const T &b) { if (a<b) { a = b; return 1; } return 0; }
template<class T>bool chmin(T &a, const T &b) { if (b<a) { a = b; return 1; } return 0; }
//---------------------------------------------------------------------------------------------------
/*---------------------------------------------------------------------------------------------------
            ∧_∧  
      ∧_∧  (´<_` )  Welcome to My Coding Space!
     ( ´_ゝ`) /  ⌒i     
    /   \     | |     
    /   / ̄ ̄ ̄ ̄/  |  
  __(__ニつ/     _/ .| .|____  
     \/____/ (u ⊃  
---------------------------------------------------------------------------------------------------*/






int N, L[10];
//---------------------------------------------------------------------------------------------------
void _main() {
    cin >> N;
    rep(i, 0, N) cin >> L[i];
    sort(L, L + N);

    int sm = 0;
    rep(i, 0, N - 1) sm += L[i];

    if (L[N - 1] < sm) cout << "Yes" << endl;
    else cout << "No" << endl;
}

Submission Info

Submission Time
Task B - Polygon
User hamayanhamayan
Language C++14 (GCC 5.4.1)
Score 200
Code Size 1590 Byte
Status AC
Exec Time 1 ms
Memory 256 KiB

Judge Result

Set Name All Sample
Score / Max Score 200 / 200 0 / 0
Status
AC × 18
AC × 3
Set Name Test Cases
All 0_small_1, 0_small_2, 0_small_3, 0_small_4, 1_max_1, 1_max_2, 1_max_3, 1_max_4, 2_hand_1, 2_hand_2, 2_hand_3, 2_hand_4, 2_hand_5, 2_hand_6, 2_hand_7, sample_01, sample_02, sample_03
Sample sample_01, sample_02, sample_03
Case Name Status Exec Time Memory
0_small_1 AC 1 ms 256 KiB
0_small_2 AC 1 ms 256 KiB
0_small_3 AC 1 ms 256 KiB
0_small_4 AC 1 ms 256 KiB
1_max_1 AC 1 ms 256 KiB
1_max_2 AC 1 ms 256 KiB
1_max_3 AC 1 ms 256 KiB
1_max_4 AC 1 ms 256 KiB
2_hand_1 AC 1 ms 256 KiB
2_hand_2 AC 1 ms 256 KiB
2_hand_3 AC 1 ms 256 KiB
2_hand_4 AC 1 ms 256 KiB
2_hand_5 AC 1 ms 256 KiB
2_hand_6 AC 1 ms 256 KiB
2_hand_7 AC 1 ms 256 KiB
sample_01 AC 1 ms 256 KiB
sample_02 AC 1 ms 256 KiB
sample_03 AC 1 ms 256 KiB