結果

問題 No.5 数字のブロック
ユーザー 夕日夕日
提出日時 2021-06-24 16:19:49
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 167 bytes
コンパイル時間 266 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 60,376 KB
最終ジャッジ日時 2024-06-25 07:30:51
合計ジャッジ時間 2,706 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,576 KB
testcase_01 AC 38 ms
52,452 KB
testcase_02 WA -
testcase_03 AC 45 ms
59,988 KB
testcase_04 AC 44 ms
59,664 KB
testcase_05 AC 46 ms
59,688 KB
testcase_06 AC 44 ms
58,572 KB
testcase_07 AC 44 ms
59,068 KB
testcase_08 AC 45 ms
59,508 KB
testcase_09 AC 42 ms
58,584 KB
testcase_10 AC 48 ms
59,428 KB
testcase_11 AC 44 ms
58,304 KB
testcase_12 AC 45 ms
60,156 KB
testcase_13 AC 47 ms
59,892 KB
testcase_14 AC 37 ms
52,068 KB
testcase_15 AC 39 ms
52,352 KB
testcase_16 AC 46 ms
58,936 KB
testcase_17 AC 48 ms
60,376 KB
testcase_18 AC 48 ms
59,964 KB
testcase_19 AC 49 ms
60,268 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 38 ms
52,916 KB
testcase_24 AC 39 ms
52,200 KB
testcase_25 AC 40 ms
53,228 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 AC 43 ms
59,320 KB
testcase_30 AC 42 ms
59,504 KB
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

L=int(input())
N=int(input())
W = input().split()
W.sort(key=int)
for i in range(N):
    if L>=int(W[i]):
        L-=int(W[i])
    else:
        print(i)
        break
0