結果

問題 No.1463 Hungry Kanten
ユーザー ygd.ygd.
提出日時 2021-04-02 21:29:55
言語 PyPy3
(7.3.15)
結果
MLE  
実行時間 -
コード長 315 bytes
コンパイル時間 555 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 998,940 KB
最終ジャッジ日時 2024-12-23 23:19:29
合計ジャッジ時間 42,777 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
57,344 KB
testcase_01 MLE -
testcase_02 TLE -
testcase_03 MLE -
testcase_04 MLE -
testcase_05 MLE -
testcase_06 AC 40 ms
56,960 KB
testcase_07 MLE -
testcase_08 AC 50 ms
66,944 KB
testcase_09 MLE -
testcase_10 MLE -
testcase_11 AC 572 ms
194,772 KB
testcase_12 MLE -
testcase_13 MLE -
testcase_14 TLE -
testcase_15 MLE -
testcase_16 TLE -
testcase_17 MLE -
testcase_18 MLE -
testcase_19 MLE -
testcase_20 TLE -
testcase_21 MLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import itertools
N,K = map(int,input().split())
A = list(map(int,input().split()))

ans = set([])
for num in range(K,N+1):
    L = list(itertools.permutations(A,num))
    for X in L:
        ans.add(sum(X))
        temp = 1
        for x in X:
            temp *= x
        ans.add(temp)
#print(ans)
print(len(ans))
0