Submission #978334


Source Code Expand

# -*- coding: utf-8 -*-

from sys import stdin
import decimal

lines = [l.strip() for l in stdin.readlines()]
deg, dis = [int(e) for e in lines[0].split(" ")]

real_deg = deg / 10.0
dir = ''
w = 0

if real_deg >= 11.25 and real_deg < 33.75:
    dir = "NNE"
elif real_deg >= 33.75 and real_deg < 56.25:
    dir = "NE"
elif real_deg >= 56.25 and real_deg < 78.75:
    dir = "ENE"
elif real_deg >= 78.75 and real_deg < 101.25:
    dir = "E"
elif real_deg >= 101.25 and real_deg < 123.75:
    dir = "ESE"
elif real_deg >= 123.75 and real_deg < 146.25:
    dir = "SE"
elif real_deg >= 146.25 and real_deg < 168.75:
    dir = "SSE"
elif real_deg >= 168.75 and real_deg < 191.25:
    dir = "S"
elif real_deg >= 191.25 and real_deg < 213.75:
    dir = "SSW"
elif real_deg >= 213.75 and real_deg < 236.25:
    dir = "SW"
elif real_deg >= 236.25 and real_deg < 258.75:
    dir = "WSW"
elif real_deg >= 258.75 and real_deg < 281.25:
    dir = "W"
elif real_deg >= 281.25 and real_deg < 303.75:
    dir = "WNW"
elif real_deg >= 303.75 and real_deg < 326.25:
    dir = "NW"
elif real_deg >= 326.25 and real_deg < 348.75:
    dir = "NNW"
else:
    dir = "N"

persec = float(decimal.Decimal(str(dis/60.0)).quantize(decimal.Decimal(str("0.0")), rounding=decimal.ROUND_HALF_UP))
#print(real_deg, dis/60.0, persec)
if persec >= 0.0 and persec <= 0.2:
    w = 0
    dir = "C"
elif persec >= 0.3 and persec <= 1.5:
    w = 1
elif persec >= 1.6 and persec <= 3.3:
    w = 2
elif persec >= 3.4 and persec <= 5.4:
    w = 3
elif persec >= 5.5 and persec <= 7.9:
    w = 4
elif persec >= 8.0 and persec <= 10.7:
    w = 5
elif persec >= 10.8 and persec <= 13.8:
    w = 6
elif persec >= 13.9 and persec <= 17.1:
    w = 7
elif persec >= 17.2 and persec <= 20.7:
    w = 8
elif persec >= 20.8 and persec <= 24.4:
    w = 9
elif persec >= 24.5 and persec <= 28.4:
    w = 10
elif persec >= 28.5 and persec <= 32.6:
    w = 11
elif persec >= 32.7:
    w = 12

print("%s %d" % (dir, w))

Submission Info

Submission Time
Task C - 風力観測
User laclefyoshi
Language Python (3.2.3)
Score 100
Code Size 2035 Byte
Status AC
Exec Time 125 ms
Memory 9800 KB

Judge Result

Set Name all
Score / Max Score 100 / 100
Status
AC × 66
Set Name Test Cases
all 00_sample_01.txt, 00_sample_02.txt, 00_sample_03.txt, 00_sample_04.txt, 00_sample_05.txt, 00_sample_06.txt, 00_sample_07.txt, 00_sample_08.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, test_18.txt, test_19.txt, test_20.txt, test_21.txt, test_22.txt, test_23.txt, test_24.txt, test_25.txt, test_26.txt, test_27.txt, test_28.txt, test_29.txt, test_30.txt, test_31.txt, test_32.txt, test_33.txt, test_34.txt, test_35.txt, test_36.txt, test_37.txt, test_38.txt, test_39.txt, test_40.txt, test_41.txt, test_42.txt, test_43.txt, test_44.txt, test_45.txt, test_46.txt, test_47.txt, test_48.txt, test_49.txt, test_50.txt, test_51.txt, test_52.txt, test_53.txt, test_54.txt, test_55.txt, test_56.txt, test_57.txt, test_58.txt
Case Name Status Exec Time Memory
00_sample_01.txt AC 125 ms 9800 KB
00_sample_02.txt AC 96 ms 9548 KB
00_sample_03.txt AC 95 ms 9600 KB
00_sample_04.txt AC 95 ms 9596 KB
00_sample_05.txt AC 96 ms 9600 KB
00_sample_06.txt AC 97 ms 9600 KB
00_sample_07.txt AC 94 ms 9600 KB
00_sample_08.txt AC 96 ms 9576 KB
test_01.txt AC 95 ms 9600 KB
test_02.txt AC 95 ms 9604 KB
test_03.txt AC 93 ms 9660 KB
test_04.txt AC 94 ms 9664 KB
test_05.txt AC 96 ms 9596 KB
test_06.txt AC 93 ms 9548 KB
test_07.txt AC 94 ms 9548 KB
test_08.txt AC 94 ms 9548 KB
test_09.txt AC 95 ms 9548 KB
test_10.txt AC 93 ms 9664 KB
test_11.txt AC 92 ms 9548 KB
test_12.txt AC 94 ms 9600 KB
test_13.txt AC 93 ms 9548 KB
test_14.txt AC 92 ms 9600 KB
test_15.txt AC 95 ms 9600 KB
test_16.txt AC 97 ms 9600 KB
test_17.txt AC 95 ms 9600 KB
test_18.txt AC 93 ms 9600 KB
test_19.txt AC 92 ms 9600 KB
test_20.txt AC 93 ms 9600 KB
test_21.txt AC 95 ms 9544 KB
test_22.txt AC 94 ms 9600 KB
test_23.txt AC 93 ms 9596 KB
test_24.txt AC 94 ms 9600 KB
test_25.txt AC 94 ms 9600 KB
test_26.txt AC 94 ms 9664 KB
test_27.txt AC 95 ms 9600 KB
test_28.txt AC 96 ms 9596 KB
test_29.txt AC 93 ms 9728 KB
test_30.txt AC 94 ms 9604 KB
test_31.txt AC 91 ms 9600 KB
test_32.txt AC 93 ms 9600 KB
test_33.txt AC 94 ms 9664 KB
test_34.txt AC 101 ms 9548 KB
test_35.txt AC 97 ms 9600 KB
test_36.txt AC 97 ms 9596 KB
test_37.txt AC 95 ms 9596 KB
test_38.txt AC 93 ms 9728 KB
test_39.txt AC 91 ms 9728 KB
test_40.txt AC 92 ms 9600 KB
test_41.txt AC 92 ms 9728 KB
test_42.txt AC 94 ms 9664 KB
test_43.txt AC 94 ms 9548 KB
test_44.txt AC 96 ms 9600 KB
test_45.txt AC 92 ms 9596 KB
test_46.txt AC 93 ms 9664 KB
test_47.txt AC 95 ms 9600 KB
test_48.txt AC 95 ms 9600 KB
test_49.txt AC 94 ms 9548 KB
test_50.txt AC 94 ms 9672 KB
test_51.txt AC 91 ms 9600 KB
test_52.txt AC 94 ms 9640 KB
test_53.txt AC 94 ms 9668 KB
test_54.txt AC 93 ms 9724 KB
test_55.txt AC 93 ms 9600 KB
test_56.txt AC 92 ms 9600 KB
test_57.txt AC 94 ms 9592 KB
test_58.txt AC 95 ms 9600 KB