Submission #1385040


Source Code Expand

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

int main() {
	int deg, dis, w;
	float f_wsp, f_deg;
	char dir[4];
	
	scanf("%d %d", &deg, &dis);
	
	f_wsp = dis / 60.0;
	f_wsp = (int)(f_wsp * 10 + 0.5);

	if (f_wsp <= 0.2 * 10) {
		w = 0;
	} else if (f_wsp <= 1.5 * 10) {
		w = 1;
	} else if (f_wsp <= 3.3 * 10) {
		w = 2;
	} else if (f_wsp <= 5.4 * 10) {
		w = 3;
	} else if (f_wsp <= 7.9 * 10) {
		w = 4;
	} else if (f_wsp <= 10.7 * 10) {
		w = 5;
	} else if (f_wsp <= 13.8 * 10) {
		w = 6;
	} else if (f_wsp <= 17.1 * 10) {
		w = 7;
	} else if (f_wsp <= 20.7 * 10) {
		w = 8;
	} else if (f_wsp <= 24.4 * 10) {
		w = 9;
	} else if (f_wsp <= 28.4 * 10) {
		w = 10;
	} else if (f_wsp <= 32.6 * 10) {
		w = 11;
	} else if (32.7 * 10 <= f_wsp) {
		w = 12;
	}
		
	f_deg = deg / 10.0;
	if (w == 0) {
		strcpy(dir, "C");
	} else if (f_deg < 11.25) {
		strcpy(dir, "N");
	} else if (f_deg < 33.75) {
		strcpy(dir, "NNE");
	} else if ( f_deg < 56.25) {
		strcpy(dir, "NE");
	} else if ( f_deg < 78.75) {
		strcpy(dir, "ENE");
	} else if ( f_deg < 101.25) {
		strcpy(dir, "E");
	} else if ( f_deg < 123.75) {
		strcpy(dir, "ESE");
	} else if ( f_deg < 146.25) {
		strcpy(dir, "SE");
	} else if ( f_deg < 168.75) {
		strcpy(dir, "SSE");
	} else if ( f_deg < 191.25) {
		strcpy(dir, "S");
	} else if ( f_deg < 213.75) {
		strcpy(dir, "SSW");
	} else if ( f_deg < 236.25) {
		strcpy(dir, "SW");
	} else if ( f_deg < 258.75) {
		strcpy(dir, "WSW");
	} else if ( f_deg < 281.25) {
		strcpy(dir, "W");
	} else if ( f_deg < 303.75) {
		strcpy(dir, "WNW");
	} else if ( f_deg < 326.25) {
		strcpy(dir, "NW");
	} else if ( f_deg < 348.75) {
		strcpy(dir, "NNW");
	} else {
		strcpy(dir, "N");
	}
	
	printf("%s %d\n", dir, w);
	
	return 0;
}

Submission Info

Submission Time
Task A - 積雪深差
User azusanabe
Language C (Clang 3.8.0)
Score 0
Code Size 1837 Byte
Status WA
Exec Time 1 ms
Memory 128 KB

Judge Result

Set Name all
Score / Max Score 0 / 100
Status
WA × 20
Set Name Test Cases
all 00_sample_01.txt, 00_sample_02.txt, 00_sample_03.txt, test_01.txt, test_02.txt, test_03.txt, test_04.txt, test_05.txt, test_06.txt, test_07.txt, test_08.txt, test_09.txt, test_10.txt, test_11.txt, test_12.txt, test_13.txt, test_14.txt, test_15.txt, test_16.txt, test_17.txt
Case Name Status Exec Time Memory
00_sample_01.txt WA 1 ms 128 KB
00_sample_02.txt WA 1 ms 128 KB
00_sample_03.txt WA 1 ms 128 KB
test_01.txt WA 1 ms 128 KB
test_02.txt WA 1 ms 128 KB
test_03.txt WA 1 ms 128 KB
test_04.txt WA 1 ms 128 KB
test_05.txt WA 1 ms 128 KB
test_06.txt WA 1 ms 128 KB
test_07.txt WA 1 ms 128 KB
test_08.txt WA 1 ms 128 KB
test_09.txt WA 1 ms 128 KB
test_10.txt WA 1 ms 128 KB
test_11.txt WA 1 ms 128 KB
test_12.txt WA 1 ms 128 KB
test_13.txt WA 1 ms 128 KB
test_14.txt WA 1 ms 128 KB
test_15.txt WA 1 ms 128 KB
test_16.txt WA 1 ms 128 KB
test_17.txt WA 1 ms 128 KB