結果
| 問題 | No.5 数字のブロック |
| コンテスト | |
| ユーザー |
splash9494
|
| 提出日時 | 2020-05-03 21:55:55 |
| 言語 | PyPy3 (7.3.17) |
| 結果 |
AC
|
| 実行時間 | 70 ms / 5,000 ms |
| + 646µs | |
| コード長 | 282 bytes |
| 記録 | |
| コンパイル時間 | 250 ms |
| コンパイル使用メモリ | 95,976 KB |
| 実行使用メモリ | 82,944 KB |
| 最終ジャッジ日時 | 2026-07-27 13:32:36 |
| 合計ジャッジ時間 | 4,695 ms |
|
ジャッジサーバーID (参考情報) |
judge2_1 / judge1_1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 34 |
ソースコード
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 True:
s += Ws[cnt]
cnt += 1
if s >= L or cnt >= N:
if s > L:
cnt -= 1
break
print(cnt)
splash9494