結果

問題 No.5 数字のブロック
ユーザー tennismonkey01tennismonkey01
提出日時 2017-03-12 15:36:32
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 369 bytes
コンパイル時間 120 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 17,024 KB
最終ジャッジ日時 2024-06-30 00:29:05
合計ジャッジ時間 42,286 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
10,624 KB
testcase_01 AC 31 ms
10,752 KB
testcase_02 AC 30 ms
10,624 KB
testcase_03 AC 2,787 ms
11,264 KB
testcase_04 AC 1,797 ms
10,880 KB
testcase_05 AC 4,665 ms
11,520 KB
testcase_06 AC 2,005 ms
11,008 KB
testcase_07 AC 1,347 ms
11,264 KB
testcase_08 AC 2,668 ms
11,008 KB
testcase_09 AC 342 ms
10,624 KB
testcase_10 TLE -
testcase_11 AC 1,265 ms
11,264 KB
testcase_12 AC 3,073 ms
11,520 KB
testcase_13 AC 4,371 ms
11,648 KB
testcase_14 AC 31 ms
10,624 KB
testcase_15 AC 34 ms
10,752 KB
testcase_16 AC 4,698 ms
11,392 KB
testcase_17 TLE -
testcase_18 -- -
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 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

L = int(input())
N = int(input())
W = list(map(int, input().split()))

for i in range(N):
    minj = i
    for j in range(i,N):
        if W[j] < W[minj]:
            minj = j
    if i != minj:
        W[i], W[minj] = W[minj], W[i]

s = 0
count = 0
for i in range(N):
    if s + W[i] <= L:
        s += W[i]
        count += 1
    else:
        break

print(count)
    
0