結果
問題 | No.617 Nafmo、買い出しに行く |
ユーザー | senden_lite |
提出日時 | 2017-12-27 12:13:27 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 413 bytes |
コンパイル時間 | 88 ms |
コンパイル使用メモリ | 12,544 KB |
実行使用メモリ | 33,920 KB |
最終ジャッジ日時 | 2024-06-01 04:51:09 |
合計ジャッジ時間 | 8,732 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 36 ms
10,752 KB |
testcase_02 | WA | - |
testcase_03 | TLE | - |
testcase_04 | WA | - |
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 for i in range(N): n = a[i] for j in range(len(b)): if b[-(j+1)] != False: index = len(b)-j-1 if n + index <= K and b[n+index] == False: b[n+index] = True for i in range(len(b)): if b[-(i+1)] != False: print(len(b)-i-1) break