Submission #1772770


Source Code Expand

def main():
    n = int(input())
    a = list(map(int, input().split()))
    
    h = [1, 3, 7, 9]

    cnt = 0
    for x in range(n):
        if a[x] not in h:
            for y in range(len(h)):
                if a[x] < h[y]:
                    hoge = h[y] - a[x]
                    cnt += hoge
                    break
    print(cnt)


if __name__ == "__main__":
    main()

Submission Info

Submission Time
Task B - 花占い
User tokizo
Language Python (3.4.3)
Score 0
Code Size 398 Byte
Status WA
Exec Time 19 ms
Memory 3064 KB

Judge Result

Set Name All
Score / Max Score 0 / 100
Status
AC × 15
WA × 5
Set Name Test Cases
All sample_01.txt, sample_02.txt, test_1.txt, test_112358.txt, test_1379137913.txt, test_1414213562.txt, test_1732151817.txt, test_2.txt, test_2236167977.txt, test_2645751311.txt, test_3.txt, test_3141592653.txt, test_4.txt, test_5.txt, test_6.txt, test_6666666666.txt, test_7.txt, test_73.txt, test_8.txt, test_9.txt
Case Name Status Exec Time Memory
sample_01.txt AC 19 ms 3060 KB
sample_02.txt AC 19 ms 2940 KB
test_1.txt AC 19 ms 3064 KB
test_112358.txt AC 19 ms 3064 KB
test_1379137913.txt AC 19 ms 3064 KB
test_1414213562.txt WA 19 ms 3060 KB
test_1732151817.txt AC 19 ms 3064 KB
test_2.txt AC 19 ms 3060 KB
test_2236167977.txt WA 19 ms 3064 KB
test_2645751311.txt AC 19 ms 3060 KB
test_3.txt AC 19 ms 3064 KB
test_3141592653.txt AC 19 ms 2940 KB
test_4.txt WA 19 ms 3064 KB
test_5.txt AC 19 ms 2936 KB
test_6.txt WA 19 ms 2940 KB
test_6666666666.txt WA 19 ms 3064 KB
test_7.txt AC 19 ms 3064 KB
test_73.txt AC 19 ms 3064 KB
test_8.txt AC 19 ms 2940 KB
test_9.txt AC 19 ms 3064 KB