結果

問題 No.617 Nafmo、買い出しに行く
ユーザー senden_litesenden_lite
提出日時 2017-12-27 12:46:25
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 426 bytes
コンパイル時間 187 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 62,988 KB
最終ジャッジ日時 2024-12-21 07:47:02
合計ジャッジ時間 30,405 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 649 ms
22,816 KB
testcase_01 AC 39 ms
39,212 KB
testcase_02 AC 912 ms
23,128 KB
testcase_03 TLE -
testcase_04 AC 192 ms
19,360 KB
testcase_05 TLE -
testcase_06 TLE -
testcase_07 TLE -
testcase_08 AC 32 ms
17,700 KB
testcase_09 AC 32 ms
48,404 KB
testcase_10 TLE -
testcase_11 TLE -
testcase_12 TLE -
testcase_13 TLE -
testcase_14 TLE -
testcase_15 AC 57 ms
10,624 KB
testcase_16 AC 70 ms
10,752 KB
testcase_17 AC 34 ms
10,624 KB
testcase_18 AC 34 ms
10,624 KB
testcase_19 AC 33 ms
10,752 KB
testcase_20 AC 34 ms
10,624 KB
testcase_21 AC 34 ms
31,920 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

i = input().split()
N = int(i[0])
K = int(i[1])

a =[0]*N

for i in range(N):
    a[i] = int(input())

b = [True] + [False]*K
l = len(b)
an = 0

for i in range(N):
    n = a[i]
    for j in range(l):
        if b[-(j+1)] != False:
            index = l-j-1
            if n + index <= K and b[n+index] == False:
                b[n+index] = True
                if n + index > an:
                    an = n + index

print(an)
0