Submission #187760


Source Code Expand

import java.util.*;

public class Main {


	public static void main(String[] args){
		//init
		Scanner sc = new Scanner(System.in);
		int N = sc.nextInt();
		int[] ng = new int[3];
		for(int i = 0;i < 3;i++){
			ng[i] = sc.nextInt();

		}
		int[][] list = new int[101][N+1];
		list[0][N] = 1;
		
		String ans = "NO";
		

		//cal
		for(int l = 0;l<100;l++){
			if(ng[0] == N || ng[1] == N || ng[2] == N ){
				break;
			}
			for(int x = 0;x <= N;x++){
				if(list[l][x] == 1){
					if((x-1) != ng[0] && (x-1) != ng[1] &&(x-1) != ng[2] && (x-1) >=0){
						list[l+1][x-1] =1;
					}
					if((x-2) != ng[0] && (x-2) != ng[1] &&(x-2) != ng[2] && (x-2) >=0){
						list[l+1][x-2] =1;
					}
					if((x-3) != ng[0] && (x-3) != ng[1] &&(x-3) != ng[2] && (x-3) >=0){
						list[l+1][x-3] =1;
					}
					
				}
				
			}
			if(list[l+1][0] == 1){
				ans = "YES";
				break;
			}

		}
				

		//ans
		System.out.println(ans);
	}


}

Submission Info

Submission Time
Task C - 123引き算
User yamamon
Language Java (OpenJDK 1.7.0)
Score 100
Code Size 977 Byte
Status AC
Exec Time 492 ms
Memory 23860 KB

Judge Result

Set Name All
Score / Max Score 100 / 100
Status
AC × 28
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 440 ms 23212 KB
sample_02.txt AC 443 ms 23184 KB
sample_03.txt AC 461 ms 23860 KB
test_143_142_141_140.txt AC 443 ms 23340 KB
test_1_1_2_3.txt AC 443 ms 23096 KB
test_1_2_3_4.txt AC 450 ms 23216 KB
test_200_200_2_3.txt AC 447 ms 23220 KB
test_231_77_78_80.txt AC 492 ms 23528 KB
test_235_124_126_125.txt AC 454 ms 23484 KB
test_253_45_47_48.txt AC 455 ms 23600 KB
test_297_223_224_225.txt AC 450 ms 23404 KB
test_297_294_292_290.txt AC 458 ms 23724 KB
test_297_297_30_83.txt AC 437 ms 23344 KB
test_297_3_43_72.txt AC 454 ms 23852 KB
test_298_125_123_124.txt AC 444 ms 23608 KB
test_298_293_295_291.txt AC 454 ms 23836 KB
test_298_298_4_8.txt AC 440 ms 23348 KB
test_298_36_72_98.txt AC 452 ms 23852 KB
test_298_55_3_43.txt AC 456 ms 23728 KB
test_298_92_91_295.txt AC 451 ms 23732 KB
test_299_200_151_65.txt AC 454 ms 23860 KB
test_299_240_35_154.txt AC 459 ms 23856 KB
test_299_300_299_298.txt AC 444 ms 23340 KB
test_299_33_242_151.txt AC 452 ms 23860 KB
test_299_56_57_58.txt AC 448 ms 23840 KB
test_299_66_132_198.txt AC 454 ms 23860 KB
test_300_271_44_68.txt AC 452 ms 23780 KB
test_300_299_298_296.txt AC 448 ms 23856 KB
test_300_30_99_183.txt AC 450 ms 23824 KB
test_300_4_5_6.txt AC 450 ms 23856 KB
test_84_34_64_36.txt AC 440 ms 23220 KB