結果
| 問題 |
No.5 数字のブロック
|
| コンテスト | |
| ユーザー |
riku0n513
|
| 提出日時 | 2018-09-28 14:52:26 |
| 言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 165 bytes |
| コンパイル時間 | 322 ms |
| コンパイル使用メモリ | 12,672 KB |
| 実行使用メモリ | 11,648 KB |
| 最終ジャッジ日時 | 2024-10-12 04:49:59 |
| 合計ジャッジ時間 | 2,203 ms |
|
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 10 WA * 24 |
ソースコード
l=int(input())
n=int(input())
w=list(map(int,input().split()))
w_new=sorted(w)
for i in range(n):
l-=w_new[i]
if l<0:
print(i)
break
print(n)
riku0n513