結果
問題 | No.5 数字のブロック |
ユーザー |
![]() |
提出日時 | 2019-03-30 19:20:36 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
RE
|
実行時間 | - |
コード長 | 320 bytes |
コンパイル時間 | 147 ms |
コンパイル使用メモリ | 12,544 KB |
実行使用メモリ | 10,624 KB |
最終ジャッジ日時 | 2024-11-16 09:55:54 |
合計ジャッジ時間 | 2,282 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | RE * 34 |
ソースコード
import sys import os f = open("C:/Users/user/Documents/python/yukicoder/import.txt","r") sys.stdin = f # -*- coding: utf-8 -*- l = int(input()) n = int(input()) w = list(map(int,input().split())) w.sort() for i in range(1,n+1): if l >= w[i]: l -= w[i] else: ans = i break print(ans)