結果

問題 No.5 数字のブロック
ユーザー ytftytft
提出日時 2022-11-02 14:31:00
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 47 ms / 5,000 ms
コード長 202 bytes
コンパイル時間 241 ms
コンパイル使用メモリ 82,428 KB
実行使用メモリ 62,244 KB
最終ジャッジ日時 2024-07-17 03:57:13
合計ジャッジ時間 3,174 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
53,908 KB
testcase_01 AC 39 ms
53,824 KB
testcase_02 AC 40 ms
54,800 KB
testcase_03 AC 44 ms
60,864 KB
testcase_04 AC 44 ms
61,916 KB
testcase_05 AC 44 ms
61,964 KB
testcase_06 AC 46 ms
60,112 KB
testcase_07 AC 44 ms
60,652 KB
testcase_08 AC 43 ms
61,244 KB
testcase_09 AC 45 ms
60,020 KB
testcase_10 AC 47 ms
62,244 KB
testcase_11 AC 44 ms
60,800 KB
testcase_12 AC 44 ms
61,284 KB
testcase_13 AC 45 ms
61,588 KB
testcase_14 AC 40 ms
54,220 KB
testcase_15 AC 41 ms
55,432 KB
testcase_16 AC 45 ms
61,484 KB
testcase_17 AC 45 ms
62,204 KB
testcase_18 AC 45 ms
61,380 KB
testcase_19 AC 45 ms
61,876 KB
testcase_20 AC 41 ms
54,912 KB
testcase_21 AC 40 ms
53,676 KB
testcase_22 AC 40 ms
53,144 KB
testcase_23 AC 41 ms
55,180 KB
testcase_24 AC 40 ms
54,068 KB
testcase_25 AC 41 ms
54,308 KB
testcase_26 AC 42 ms
54,156 KB
testcase_27 AC 41 ms
54,748 KB
testcase_28 AC 40 ms
54,724 KB
testcase_29 AC 44 ms
61,080 KB
testcase_30 AC 43 ms
60,276 KB
testcase_31 AC 40 ms
53,820 KB
testcase_32 AC 40 ms
55,188 KB
testcase_33 AC 39 ms
53,916 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys,copy
input=lambda:sys.stdin.readline().rstrip()
W=int(input())
N=int(input())
A=sorted(list(map(int,input().split())))
for i in range(N):
	if A[i]>W:
		print(i)
		sys.exit()
	W-=A[i]
print(N)
0