結果
| 問題 | No.5 数字のブロック |
| コンテスト | |
| ユーザー |
YetAnother_yk
|
| 提出日時 | 2017-01-09 08:24:16 |
| 言語 | Python3 (3.14.3 + numpy 2.4.4 + scipy 1.17.1) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 144 bytes |
| 記録 | |
| コンパイル時間 | 576 ms |
| コンパイル使用メモリ | 20,824 KB |
| 実行使用メモリ | 15,512 KB |
| 最終ジャッジ日時 | 2026-05-27 01:55:58 |
| 合計ジャッジ時間 | 5,275 ms |
|
ジャッジサーバーID (参考情報) |
judge3_1 / judge2_1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 24 WA * 10 |
ソースコード
L=int(input())
input()
m=0
for i,w in enumerate(sorted([int(w) for w in input().split()])):
m+=w
if m>L:
print(i)
break
YetAnother_yk