結果
問題 | No.59 鉄道の旅 |
ユーザー | nebukuro09 |
提出日時 | 2016-09-28 16:17:46 |
言語 | PyPy2 (7.3.15) |
結果 |
TLE
|
実行時間 | - |
コード長 | 520 bytes |
コンパイル時間 | 1,836 ms |
コンパイル使用メモリ | 76,672 KB |
実行使用メモリ | 268,416 KB |
最終ジャッジ日時 | 2024-06-07 02:29:54 |
合計ジャッジ時間 | 7,475 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 80 ms
75,648 KB |
testcase_01 | AC | 81 ms
75,392 KB |
testcase_02 | AC | 81 ms
75,392 KB |
testcase_03 | AC | 81 ms
75,392 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, raw_input().split()) nimotsu = {} for _ in xrange(N): query = int(raw_input()) if query > 0: if sum(v for k,v in nimotsu.items() if k >= query) < K: if query in nimotsu: nimotsu[query] += 1 else: nimotsu[query] = 1 else: query *= -1 if query in nimotsu: if nimotsu[query] == 1: del nimotsu[query] else: nimotsu[query] -= 1 print sum(nimotsu.values())