Submission #7090022


Source Code Expand

#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
typedef pair<ll, ll> lpair;
const ll MOD = 1e9 + 7;
const ll INF = 1e18;
#define REP(i,m,n) for(int i=(int)(m) ; i < (int) (n) ; ++i )
#define rep(i,n) REP(i,0,n)
#define rREP(i,m,n) for(ll i = (m); i >= (n); i--)
#define print(x) cout << (x) << endl;
#define printa(x,n) for(ll i = 0; i < n; i++){ cout << (x[i]) << " ";} cout<<endl;
int main(){
    cin.tie(0);
    ios::sync_with_stdio(false);
    
    int n;
    cin >> n;
    int ng[3];
    rep(i,3) cin >> ng[i];

    int now_num=n;
    bool flag = true;
    rep(i,100)
    {
        if (now_num == 0) break;
        rep(j,3)
        {
            if(now_num==ng[i]){
                flag = false;
            }
        }
        bool hetta = false;
        for(int j=3;j>0;j--)
        {
            if (now_num-j<0) continue;
            bool ngflag = true;
            rep(k,3)
            {
                if(now_num-j==ng[k]) ngflag = false;
            }
            if(ngflag){
                now_num -= j;
                hetta = true;
                break;
            }
        }
        if (!hetta)
        {
            flag = false;
            break;
        }
    }

    if (flag && now_num == 0)
    {
        cout << "YES" << endl;
    }
    else
    {
        cout << "NO" << endl;
    }
    
}

Submission Info

Submission Time
Task C - 123引き算
User yakata66
Language Python (3.4.3)
Score 0
Code Size 1339 Byte
Status RE
Exec Time 18 ms
Memory 2940 KB

Judge Result

Set Name All
Score / Max Score 0 / 100
Status
RE × 31
Set Name Test Cases
All sample_01.txt, sample_02.txt, sample_03.txt, test_143_142_141_140.txt, test_1_1_2_3.txt, test_1_2_3_4.txt, test_200_200_2_3.txt, test_231_77_78_80.txt, test_235_124_126_125.txt, test_253_45_47_48.txt, test_297_223_224_225.txt, test_297_294_292_290.txt, test_297_297_30_83.txt, test_297_3_43_72.txt, test_298_125_123_124.txt, test_298_293_295_291.txt, test_298_298_4_8.txt, test_298_36_72_98.txt, test_298_55_3_43.txt, test_298_92_91_295.txt, test_299_200_151_65.txt, test_299_240_35_154.txt, test_299_300_299_298.txt, test_299_33_242_151.txt, test_299_56_57_58.txt, test_299_66_132_198.txt, test_300_271_44_68.txt, test_300_299_298_296.txt, test_300_30_99_183.txt, test_300_4_5_6.txt, test_84_34_64_36.txt
Case Name Status Exec Time Memory
sample_01.txt RE 17 ms 2940 KB
sample_02.txt RE 17 ms 2940 KB
sample_03.txt RE 18 ms 2940 KB
test_143_142_141_140.txt RE 17 ms 2940 KB
test_1_1_2_3.txt RE 17 ms 2940 KB
test_1_2_3_4.txt RE 17 ms 2940 KB
test_200_200_2_3.txt RE 17 ms 2940 KB
test_231_77_78_80.txt RE 18 ms 2940 KB
test_235_124_126_125.txt RE 18 ms 2940 KB
test_253_45_47_48.txt RE 17 ms 2940 KB
test_297_223_224_225.txt RE 17 ms 2940 KB
test_297_294_292_290.txt RE 17 ms 2940 KB
test_297_297_30_83.txt RE 17 ms 2940 KB
test_297_3_43_72.txt RE 17 ms 2940 KB
test_298_125_123_124.txt RE 17 ms 2940 KB
test_298_293_295_291.txt RE 17 ms 2940 KB
test_298_298_4_8.txt RE 17 ms 2940 KB
test_298_36_72_98.txt RE 17 ms 2940 KB
test_298_55_3_43.txt RE 17 ms 2940 KB
test_298_92_91_295.txt RE 17 ms 2940 KB
test_299_200_151_65.txt RE 17 ms 2940 KB
test_299_240_35_154.txt RE 17 ms 2940 KB
test_299_300_299_298.txt RE 17 ms 2940 KB
test_299_33_242_151.txt RE 18 ms 2940 KB
test_299_56_57_58.txt RE 18 ms 2940 KB
test_299_66_132_198.txt RE 17 ms 2940 KB
test_300_271_44_68.txt RE 17 ms 2940 KB
test_300_299_298_296.txt RE 17 ms 2940 KB
test_300_30_99_183.txt RE 18 ms 2940 KB
test_300_4_5_6.txt RE 18 ms 2940 KB
test_84_34_64_36.txt RE 18 ms 2940 KB