結果
問題 | No.59 鉄道の旅 |
ユーザー | szkhts |
提出日時 | 2024-03-17 08:34:15 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
TLE
|
実行時間 | - |
コード長 | 459 bytes |
コンパイル時間 | 230 ms |
コンパイル使用メモリ | 12,672 KB |
実行使用メモリ | 60,448 KB |
最終ジャッジ日時 | 2024-09-30 04:39:36 |
合計ジャッジ時間 | 7,773 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 181 ms
60,448 KB |
testcase_01 | AC | 187 ms
26,200 KB |
testcase_02 | AC | 205 ms
26,332 KB |
testcase_03 | AC | 380 ms
26,388 KB |
testcase_04 | TLE | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
ソースコード
n, k = map(int, input().split()) weights = [0] * 1000001 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: if i < k: weights[w] += 1 else: tmp = sum(weights[w:]) if tmp < k: weights[w] += 1 for i in range(len(weights)): ans += weights[i] print(ans)