結果
問題 |
No.5 数字のブロック
|
ユーザー |
![]() |
提出日時 | 2020-05-03 21:22:40 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 228 bytes |
コンパイル時間 | 249 ms |
コンパイル使用メモリ | 82,432 KB |
実行使用メモリ | 59,776 KB |
最終ジャッジ日時 | 2024-06-23 01:22:28 |
合計ジャッジ時間 | 2,661 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 27 WA * 7 |
ソースコード
import sys input = sys.stdin.buffer.readline L = int(input()) N = int(input()) Ws = sorted(list(map(int, input().split()))) s = 0 cnt = 0 while s < L and cnt < N: s += Ws[cnt] cnt += 1 print(cnt if s == L else cnt - 1)