結果
| 問題 | No.5 数字のブロック |
| コンテスト | |
| ユーザー |
pumpkin12
|
| 提出日時 | 2021-02-15 08:27:13 |
| 言語 | Python3 (3.14.3 + numpy 2.4.4 + scipy 1.17.1) |
| 結果 |
RE
|
| 実行時間 | - |
| コード長 | 155 bytes |
| 記録 | |
| コンパイル時間 | 622 ms |
| コンパイル使用メモリ | 20,760 KB |
| 実行使用メモリ | 21,336 KB |
| 最終ジャッジ日時 | 2026-04-03 10:52:17 |
| 合計ジャッジ時間 | 11,078 ms |
|
ジャッジサーバーID (参考情報) |
judge4_1 / judge5_1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | RE * 34 |
ソースコード
l = int(input())
sum = 0; count = 0
n = int(input())
m = sorted(input().split())
for i in m:
sum += i
if sum > l: break
count += 1
print(count)
pumpkin12