Submission #9791654


Source Code Expand

# -*- coding: utf-8 -*-
import sys
import math
import os
import itertools
import string
import heapq
from _collections import defaultdict
from functools import lru_cache

class Scanner():
    def int():
        return int(sys.stdin.readline().rstrip())
    def string():
        return sys.stdin.readline().rstrip()
    def map_int():
        return [int(x) for x in Scanner.string().split()]
    def string_list(n):
        return [input() for i in range(n)]
    def int_list_list(n):
        return [Scanner.mapInt() for i in range(n)]
    def int_cols_list(n):
        return [int(input()) for i in range(n)]
        
class Math():
    def gcd(a,b):
        if b == 0:
            return a
        return Math.gcd(b,a % b)
    def lcm(a,b):
        return (a * b) // Math.gcd(a,b)
    def roundUp(a,b):
        return -(-a // b)
    def toUpperMultiple(a,x):
        return Math.roundUp(a,x) * x
    def toLowerMultiple(a,x):
        return (a // x) * x
    def nearPow2(n):
        if n <= 0:
            return 0
        if n & (n - 1) == 0:
            return n
        ret = 1
        while(n > 0):
            ret <<= 1
            n >>= 1
        return ret
    def isPrime(n):
        if n < 2:
            return False
        if n == 2:
            return True
        if n % 2 == 0:
            return False
        d = int(n ** 0.5) + 1
        for i in range(3,d + 1,2):
            if n % i == 0:
                return False
        return True

MOD = int(1e09) + 7

def main():
    N = Scanner.int()
    S = Scanner.int_cols_list(N)
    S.sort(reverse = True)
    ans = sum(S)
    i = 0
    if ans % 10 == 0:
        n = [x for x in S if x % 10 != 0]
        if n == []:
            ans = 0
        else:
            ans -= min(n)
    print(ans)
    return

if __name__ == "__main__":
    main()

Submission Info

Submission Time
Task C - Bugged
User matsu0112
Language PyPy3 (2.4.0)
Score 300
Code Size 1893 Byte
Status AC
Exec Time 177 ms
Memory 38512 KB

Judge Result

Set Name Sample All
Score / Max Score 0 / 0 300 / 300
Status
AC × 3
AC × 12
Set Name Test Cases
Sample a01, a02, a03
All a01, a02, a03, b04, b05, b06, b07, b08, b09, b10, b11, b12
Case Name Status Exec Time Memory
a01 AC 171 ms 38512 KB
a02 AC 171 ms 38512 KB
a03 AC 168 ms 38512 KB
b04 AC 177 ms 38512 KB
b05 AC 173 ms 38512 KB
b06 AC 170 ms 38512 KB
b07 AC 170 ms 38512 KB
b08 AC 171 ms 38512 KB
b09 AC 170 ms 38512 KB
b10 AC 168 ms 38512 KB
b11 AC 171 ms 38512 KB
b12 AC 172 ms 38512 KB