結果

問題 No.59 鉄道の旅
ユーザー szkhtsszkhts
提出日時 2024-03-17 07:57:31
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
RE  
実行時間 -
コード長 402 bytes
コンパイル時間 251 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 18,464 KB
最終ジャッジ日時 2024-09-30 04:38:57
合計ジャッジ時間 9,875 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 91 ms
11,392 KB
testcase_01 AC 78 ms
11,520 KB
testcase_02 AC 103 ms
11,264 KB
testcase_03 AC 450 ms
11,264 KB
testcase_04 RE -
testcase_05 RE -
testcase_06 RE -
testcase_07 RE -
testcase_08 RE -
testcase_09 RE -
testcase_10 RE -
testcase_11 TLE -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

n, k = map(int, input().split())
weights = [0] * 100001
ans = 0

for i in range(n):
    w = int(input())
    tmp = 0
    if w < 0:
        if weights[abs(w)] > 0:
            weights[abs(w)] -= 1
    else:
        for j in range(w, len(weights)):
            tmp += weights[j]
        if tmp < k:
            weights[w] += 1
        
for i in range(len(weights)):
    ans += weights[i]
    
print(ans)
0