結果

問題 No.2329 Nafmo、イカサマをする
ユーザー titiatitia
提出日時 2023-07-25 05:36:14
言語 PyPy3
(7.3.15)
結果
MLE  
実行時間 -
コード長 187 bytes
コンパイル時間 174 ms
コンパイル使用メモリ 82,296 KB
実行使用メモリ 667,928 KB
最終ジャッジ日時 2024-10-01 23:54:16
合計ジャッジ時間 4,934 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
59,284 KB
testcase_01 AC 40 ms
52,216 KB
testcase_02 AC 41 ms
52,064 KB
testcase_03 AC 38 ms
52,052 KB
testcase_04 AC 39 ms
51,748 KB
testcase_05 AC 38 ms
53,372 KB
testcase_06 AC 40 ms
51,876 KB
testcase_07 AC 39 ms
53,112 KB
testcase_08 AC 124 ms
130,240 KB
testcase_09 AC 49 ms
65,860 KB
testcase_10 AC 43 ms
59,636 KB
testcase_11 AC 55 ms
70,484 KB
testcase_12 AC 55 ms
72,212 KB
testcase_13 AC 59 ms
73,924 KB
testcase_14 AC 44 ms
62,200 KB
testcase_15 AC 40 ms
56,252 KB
testcase_16 AC 65 ms
79,820 KB
testcase_17 AC 43 ms
59,736 KB
testcase_18 MLE -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
testcase_37 -- -
testcase_38 -- -
testcase_39 -- -
testcase_40 -- -
testcase_41 -- -
testcase_42 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

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

S=1
ALL=(1<<(M+1))-1

for i in range(K):
    NS=1

    for a in A:
        NS|=S<<a

    S=NS&ALL

print(S.bit_length()-1)
0