結果
問題 | No.5 数字のブロック |
ユーザー | matsukin1111 |
提出日時 | 2018-12-05 16:18:12 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
AC
|
実行時間 | 33 ms / 5,000 ms |
コード長 | 177 bytes |
コンパイル時間 | 154 ms |
コンパイル使用メモリ | 12,672 KB |
実行使用メモリ | 11,648 KB |
最終ジャッジ日時 | 2024-11-18 12:43:57 |
合計ジャッジ時間 | 1,969 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 34 |
ソースコード
A = int(input()) B = int(input()) C_1 = input().split() C = [int(s) for s in C_1] C.sort() sum = 0 fl = 0 for i in C: sum += i if(sum > A):break fl += 1 print(fl)