結果
問題 | No.617 Nafmo、買い出しに行く |
ユーザー | senden_lite |
提出日時 | 2017-12-27 12:39:25 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 420 bytes |
コンパイル時間 | 188 ms |
コンパイル使用メモリ | 12,544 KB |
実行使用メモリ | 35,168 KB |
最終ジャッジ日時 | 2024-06-01 04:52:41 |
合計ジャッジ時間 | 8,438 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 624 ms
23,100 KB |
testcase_01 | AC | 36 ms
10,880 KB |
testcase_02 | AC | 858 ms
16,192 KB |
testcase_03 | TLE | - |
testcase_04 | AC | 187 ms
12,544 KB |
testcase_05 | TLE | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
ソースコード
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) 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 for i in range(l): if b[-(i+1)] != False: print(l-i-1) break