結果

問題 No.5 数字のブロック
ユーザー _kouhe1_kouhe1
提出日時 2018-11-08 16:35:09
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
RE  
実行時間 -
コード長 359 bytes
コンパイル時間 129 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 12,160 KB
最終ジャッジ日時 2024-04-30 22:41:24
合計ジャッジ時間 2,430 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
10,880 KB
testcase_01 AC 32 ms
10,752 KB
testcase_02 RE -
testcase_03 AC 42 ms
11,776 KB
testcase_04 RE -
testcase_05 AC 44 ms
11,904 KB
testcase_06 RE -
testcase_07 AC 42 ms
11,648 KB
testcase_08 RE -
testcase_09 RE -
testcase_10 RE -
testcase_11 RE -
testcase_12 RE -
testcase_13 RE -
testcase_14 AC 39 ms
11,392 KB
testcase_15 RE -
testcase_16 RE -
testcase_17 AC 46 ms
12,032 KB
testcase_18 RE -
testcase_19 RE -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 RE -
testcase_24 RE -
testcase_25 AC 38 ms
11,392 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 RE -
testcase_30 RE -
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

l,n = [int(input()) for _ in range(2)]
w = list(map(int, input().split()))
cntDic = {}
sw = []
for i in range(1, l):
    cntDic[str(i)] = 0

for we in w:
    cntDic[str(we)] += 1

for i in range(1, l):
    for _ in range(cntDic[str(i)]):
        sw.append(i)

cnt = 0
for i, swe in enumerate(sw):
    cnt += swe
    if cnt > l:
        print(i)
        break
0