結果
問題 | No.5 数字のブロック |
ユーザー | ytoki28 |
提出日時 | 2020-12-09 21:20:05 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
AC
|
実行時間 | 475 ms / 5,000 ms |
コード長 | 223 bytes |
コンパイル時間 | 71 ms |
コンパイル使用メモリ | 12,544 KB |
実行使用メモリ | 43,792 KB |
最終ジャッジ日時 | 2024-09-19 04:04:31 |
合計ジャッジ時間 | 18,291 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 34 |
ソースコード
import sys import numpy as np readline = sys.stdin.readline l = int(input()) n = int(input()) w = np.array(readline().split(), dtype=np.int64) w.sort() s = np.cumsum(w) ans = np.searchsorted(s, l, side='right') print(ans)