Submission #188230


Source Code Expand

#include <stdio.h>
#include <math.h>

int main(void){

	int N, b1, b2, b3, tmp;
	int res = 1;
	
	scanf("%d\n", &N);
	scanf("%d\n", &b1);
	scanf("%d\n", &b2);
	scanf("%d\n", &b3);
	
	if(b1 > b2){
		tmp = b1; b1 = b2; b2 = tmp;
	}
	if(b2 > b3){
		tmp = b2; b2 = b3; b3 = tmp;
	}
	
	if((b1 == N) || (b2 == N) || (b3 == N)){
		res = 0;
	}else if ((b1+1 == b2) && (b2+1 == b3) && (b3 < N)){
		res = 0;
	}else if(N == 299) {
		if ((b1+1 == b2) && (b1%3 == 2)) {
			res = 0;
		} else if((b2+1 == b3) && (b2%3 == 2)) {
			res = 0;
		} else if((b1%3 == 0) && (b2%3 == 2)) {
			res = 0;
		} else if((b1%3 == 0) && (b3%3 == 2)) {
			res = 0;
		} else if((b2%3 == 0) && (b2%3 == 2)) {
			res = 0;
		}
	} else if(N == 298){
		if ((b1+1 == b2) && (b1%3 == 2) && (b3%3 == 1)) {
			res = 0;
		} else if((b1%3 == 0) && (b2+1 == b3) && (b2%3 == 1)) {
			res = 0;
		} else if((b1%3 == 0) && (b2%3 == 2) && (b3%3 == 1)) {
			res = 0;
		}
		
	}else if (N == 300){
		if((b1%3 == 0) || (b2%3 == 0) || (b3%3 == 0)){
			res = 0;
		}
	}
	
	if(res){
		printf("YES\n");
	}else{
		printf("NO\n" );
	}
	
	return 0;
}

Submission Info

Submission Time
Task C - 123引き算
User Linus
Language C (GCC 4.6.4)
Score 0
Code Size 1144 Byte
Status WA
Exec Time 21 ms
Memory 804 KB

Compile Error

./Main.c: In function ‘main’:
./Main.c:9:7: warning: ignoring return value of ‘scanf’, declared with attribute warn_unused_result [-Wunused-result]
./Main.c:10:7: warning: ignoring return value of ‘scanf’, declared with attribute warn_unused_result [-Wunused-result]
./Main.c:11:7: warning: ignoring return value of ‘scanf’, declared with attribute warn_unused_result [-Wunused-result]
./Main.c:12:7: warning: ignoring return value of ‘scanf’, declared with attribute warn_unused_result [-Wunused-result]

Judge Result

Set Name All
Score / Max Score 0 / 100
Status
AC × 26
WA × 2
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 19 ms 672 KB
sample_02.txt AC 21 ms 796 KB
sample_03.txt AC 21 ms 800 KB
test_143_142_141_140.txt WA 20 ms 800 KB
test_1_1_2_3.txt AC 20 ms 804 KB
test_1_2_3_4.txt AC 20 ms 804 KB
test_200_200_2_3.txt AC 20 ms 804 KB
test_231_77_78_80.txt AC 20 ms 744 KB
test_235_124_126_125.txt AC 19 ms 708 KB
test_253_45_47_48.txt AC 19 ms 704 KB
test_297_223_224_225.txt AC 20 ms 704 KB
test_297_294_292_290.txt AC 19 ms 788 KB
test_297_297_30_83.txt AC 20 ms 700 KB
test_297_3_43_72.txt AC 21 ms 712 KB
test_298_125_123_124.txt AC 19 ms 796 KB
test_298_293_295_291.txt WA 19 ms 800 KB
test_298_298_4_8.txt AC 20 ms 708 KB
test_298_36_72_98.txt AC 20 ms 704 KB
test_298_55_3_43.txt AC 20 ms 652 KB
test_298_92_91_295.txt AC 19 ms 708 KB
test_299_200_151_65.txt AC 18 ms 696 KB
test_299_240_35_154.txt AC 19 ms 740 KB
test_299_300_299_298.txt AC 20 ms 656 KB
test_299_33_242_151.txt AC 20 ms 804 KB
test_299_56_57_58.txt AC 18 ms 708 KB
test_299_66_132_198.txt AC 19 ms 704 KB
test_300_271_44_68.txt AC 19 ms 668 KB
test_300_299_298_296.txt AC 20 ms 800 KB
test_300_30_99_183.txt AC 21 ms 792 KB
test_300_4_5_6.txt AC 19 ms 704 KB
test_84_34_64_36.txt AC 19 ms 796 KB