結果

問題 No.5 数字のブロック
ユーザー つなぎつなぎ
提出日時 2017-02-22 17:21:01
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
TLE  
実行時間 -
コード長 285 bytes
コンパイル時間 626 ms
コンパイル使用メモリ 12,288 KB
実行使用メモリ 22,400 KB
最終ジャッジ日時 2024-12-30 19:02:14
合計ジャッジ時間 72,756 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
21,888 KB
testcase_01 AC 32 ms
21,760 KB
testcase_02 AC 32 ms
16,000 KB
testcase_03 TLE -
testcase_04 AC 2,192 ms
22,144 KB
testcase_05 TLE -
testcase_06 AC 3,228 ms
16,256 KB
testcase_07 AC 2,383 ms
22,016 KB
testcase_08 AC 4,233 ms
11,264 KB
testcase_09 AC 607 ms
10,752 KB
testcase_10 TLE -
testcase_11 AC 1,952 ms
10,880 KB
testcase_12 TLE -
testcase_13 TLE -
testcase_14 AC 35 ms
10,496 KB
testcase_15 AC 41 ms
10,624 KB
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 AC 34 ms
10,496 KB
testcase_21 AC 33 ms
10,624 KB
testcase_22 AC 33 ms
10,496 KB
testcase_23 AC 33 ms
10,624 KB
testcase_24 AC 47 ms
10,496 KB
testcase_25 AC 79 ms
10,752 KB
testcase_26 AC 33 ms
10,624 KB
testcase_27 AC 32 ms
10,752 KB
testcase_28 AC 33 ms
10,496 KB
testcase_29 AC 2,010 ms
10,880 KB
testcase_30 AC 725 ms
10,624 KB
testcase_31 AC 32 ms
10,624 KB
testcase_32 AC 34 ms
10,496 KB
testcase_33 AC 30 ms
22,144 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

aa=int(input())
bb=int(input())
cc=list(map(int,input().split(" ")))
dd=0
ee=0
ff=0
for i in range(0,bb):
  for j in range(i+1,bb):
    if cc[i]>cc[j] :
      dd=cc[i]
      cc[i]=cc[j]
      cc[j]=dd
for i in range(0,bb):
  ee+=cc[i]
  if ee<=aa:
    ff+=1
  else:
    break
print(ff)
0