結果

問題 No.385 カップ麺生活
ユーザー ebicochinealebicochineal
提出日時 2016-07-02 19:35:29
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 857 bytes
コンパイル時間 192 ms
コンパイル使用メモリ 82,076 KB
実行使用メモリ 223,108 KB
最終ジャッジ日時 2024-10-12 01:16:13
合計ジャッジ時間 7,824 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
57,472 KB
testcase_01 AC 48 ms
58,240 KB
testcase_02 AC 36 ms
51,968 KB
testcase_03 AC 41 ms
58,624 KB
testcase_04 AC 103 ms
76,416 KB
testcase_05 AC 40 ms
58,752 KB
testcase_06 AC 61 ms
72,704 KB
testcase_07 AC 90 ms
76,400 KB
testcase_08 AC 67 ms
76,160 KB
testcase_09 AC 37 ms
51,840 KB
testcase_10 AC 117 ms
76,416 KB
testcase_11 AC 36 ms
52,096 KB
testcase_12 AC 86 ms
76,416 KB
testcase_13 AC 243 ms
90,972 KB
testcase_14 AC 843 ms
111,424 KB
testcase_15 AC 105 ms
81,200 KB
testcase_16 AC 44 ms
60,672 KB
testcase_17 AC 556 ms
108,268 KB
testcase_18 AC 67 ms
75,868 KB
testcase_19 AC 69 ms
76,288 KB
testcase_20 AC 134 ms
92,792 KB
testcase_21 AC 193 ms
89,344 KB
testcase_22 AC 294 ms
78,976 KB
testcase_23 AC 147 ms
84,116 KB
testcase_24 TLE -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

def prime_number_list(n): 
    l = [2, 3]
    if n < 5 : return l 
    for i in range(5, n+1, 2):
        if all([0 if i % x == 0 else 1 for x in l]):
            l += [i]
    return l

def main():
    M = int(input())
    N = int(input())
    C = sorted(list(map(int, input().split())))
    p = set(prime_number_list(M))
    ans = M // min(C)
    q = [0]
    cnt = 0
    l = [0] * (M + sum(C))
    C_ = [C[0]]
    for i in range(1, len(C)):
        if all([0 if C[i] % x == 0 else 1 for x in C[:i]]):
            C_ += [C[i]]
    while q:
        cnt += 1
        s = set(filter(lambda x : x <= M, q))
        q = []
        for i in s:
            for j in C_:
                a = i + j
                q += [a]
                l[M - a] = cnt
    for i in range(M):
        if i+1 in p : ans += l[i+1]
    print(ans)

if __name__ == '__main__':
    main()
0