結果

問題 No.5 数字のブロック
ユーザー aceroidaceroid
提出日時 2017-03-07 20:00:21
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
RE  
実行時間 -
コード長 290 bytes
コンパイル時間 386 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 11,776 KB
最終ジャッジ日時 2024-06-23 17:55:42
合計ジャッジ時間 2,348 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

a = input()
b = input()
c = input().split()
d = [int(i) for i in c]
d.sort()
sums = 0
count = 0
for i in d:
    sums += i
    if sums < int(a):
        count += 1
        continue
    elif sums == int(a):
        count += 1
        break
    elif sums > inta(a):
        break
print(count)
0