結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
16,000 KB
testcase_01 AC 32 ms
16,128 KB
testcase_02 WA -
testcase_03 TLE -
testcase_04 AC 2,089 ms
21,888 KB
testcase_05 TLE -
testcase_06 AC 3,323 ms
16,128 KB
testcase_07 AC 2,523 ms
22,144 KB
testcase_08 AC 4,282 ms
22,272 KB
testcase_09 AC 605 ms
10,624 KB
testcase_10 TLE -
testcase_11 AC 2,068 ms
10,880 KB
testcase_12 TLE -
testcase_13 TLE -
testcase_14 AC 36 ms
10,624 KB
testcase_15 WA -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 AC 32 ms
10,496 KB
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 32 ms
10,496 KB
testcase_24 AC 47 ms
10,496 KB
testcase_25 AC 83 ms
10,624 KB
testcase_26 AC 32 ms
10,496 KB
testcase_27 AC 33 ms
10,752 KB
testcase_28 AC 32 ms
10,496 KB
testcase_29 WA -
testcase_30 WA -
testcase_31 AC 34 ms
10,496 KB
testcase_32 AC 33 ms
10,496 KB
testcase_33 AC 34 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