結果
問題 |
No.5 数字のブロック
|
ユーザー |
|
提出日時 | 2019-08-23 16:49:21 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
WA
|
実行時間 | - |
コード長 | 259 bytes |
コンパイル時間 | 232 ms |
コンパイル使用メモリ | 12,672 KB |
実行使用メモリ | 11,776 KB |
最終ジャッジ日時 | 2024-10-13 14:30:16 |
合計ジャッジ時間 | 2,321 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 12 WA * 22 |
ソースコード
data = int(input()) num = int(input()) block = input().split(' ') int_block = [int(s) for s in block] sorted(int_block, reverse = True) count = 0 sum = 0 for i in range(num): sum += int_block[i] if sum > data: break count += 1 print(count)