Submission #188383


Source Code Expand

#include <string>
#include <vector>
#include <string.h>
#include <sstream>
#include <algorithm>
#include <iostream>
#include <functional>
#include <math.h>
#define MAX 100
 
using namespace std;
 
int main(){
	int n,cnt=0;
	vector <int> ng(3);
	cin>>n>>ng[0]>>ng[1]>>ng[2];
	sort(ng.begin(),ng.end());
	if(n==300 && cnt>=1)cout<<"NO"<<endl;
	else if(n==ng[0] || n==ng[1] || n==ng[2])cout<<"NO"<<endl;
	else{
		while(n>0){
			if(n-3==ng[0] || n-3==ng[1] || n-3==ng[2]){
				if(n-2==ng[0] || n-2==ng[1] || n-2==ng[2]){
					if(n-1==ng[0] || n-1==ng[1] || n-1==ng[2]){
						cout<<"NO"<<endl;
						return 0;
					}else{
						n-=1;
					}
				}else{
					n-=2;
				}
			}else{
				n-=3;
			}
			cnt++;
		}
	}
	if(cnt>100)cout<<"NO"<<endl;
	else cout<<"YES"<<endl;
		
	return 0;
}

Submission Info

Submission Time
Task C - 123引き算
User imaginative
Language C++ (G++ 4.6.4)
Score 0
Code Size 821 Byte
Status WA
Exec Time 22 ms
Memory 932 KB

Judge Result

Set Name All
Score / Max Score 0 / 100
Status
AC × 23
WA × 5
Set Name Test Cases
All 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 AC 21 ms 924 KB
sample_02.txt AC 20 ms 800 KB
sample_03.txt AC 20 ms 924 KB
test_143_142_141_140.txt AC 20 ms 744 KB
test_1_1_2_3.txt WA 21 ms 800 KB
test_1_2_3_4.txt AC 21 ms 928 KB
test_200_200_2_3.txt WA 20 ms 808 KB
test_231_77_78_80.txt AC 21 ms 924 KB
test_235_124_126_125.txt AC 20 ms 924 KB
test_253_45_47_48.txt AC 19 ms 928 KB
test_297_223_224_225.txt AC 22 ms 800 KB
test_297_294_292_290.txt AC 22 ms 800 KB
test_297_297_30_83.txt WA 20 ms 924 KB
test_297_3_43_72.txt AC 20 ms 800 KB
test_298_125_123_124.txt AC 20 ms 920 KB
test_298_293_295_291.txt AC 20 ms 924 KB
test_298_298_4_8.txt WA 20 ms 924 KB
test_298_36_72_98.txt AC 20 ms 800 KB
test_298_55_3_43.txt AC 21 ms 800 KB
test_298_92_91_295.txt AC 20 ms 800 KB
test_299_200_151_65.txt AC 20 ms 800 KB
test_299_240_35_154.txt AC 20 ms 792 KB
test_299_300_299_298.txt WA 20 ms 800 KB
test_299_33_242_151.txt AC 21 ms 924 KB
test_299_56_57_58.txt AC 20 ms 928 KB
test_299_66_132_198.txt AC 20 ms 932 KB
test_300_271_44_68.txt AC 21 ms 800 KB
test_300_299_298_296.txt AC 20 ms 920 KB
test_300_30_99_183.txt AC 20 ms 800 KB
test_300_4_5_6.txt AC 21 ms 916 KB
test_84_34_64_36.txt AC 21 ms 928 KB