結果
問題 | No.618 labo-index |
ユーザー | Ryuto |
提出日時 | 2017-12-18 21:45:52 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,024 bytes |
コンパイル時間 | 144 ms |
コンパイル使用メモリ | 82,060 KB |
実行使用メモリ | 100,176 KB |
最終ジャッジ日時 | 2024-05-09 11:58:15 |
合計ジャッジ時間 | 25,847 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 40 ms
51,968 KB |
testcase_01 | AC | 37 ms
52,096 KB |
testcase_02 | AC | 38 ms
51,712 KB |
testcase_03 | AC | 37 ms
51,840 KB |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | WA | - |
testcase_31 | WA | - |
testcase_32 | WA | - |
testcase_33 | WA | - |
testcase_34 | TLE | - |
testcase_35 | -- | - |
testcase_36 | -- | - |
testcase_37 | -- | - |
testcase_38 | -- | - |
ソースコード
#!/usr/bin/env python Q = int(input()) events = [] for i in range(Q): events.append([int(x) for x in input().split()]) i = 1 ans = 0 initl = 0 labo_indexs = {} for event in events: if event[0] == 1: labo_indexs[i] = event[1] i += 1 if event[1] <= ans: print(ans) continue elif event[0] == 2: tmp = labo_indexs[event[1]] del labo_indexs[event[1]] if tmp < ans: print(ans) continue elif tmp >= ans: initl = ans elif event[0] == 3: labo_indexs = dict([(x, y+event[1]) for (x, y) in labo_indexs.items()]) vals = sorted(labo_indexs.values(), reverse=True) for l in range(len(vals) if initl == 0 else initl, -1, -1): npeop = 0 for val in vals: if val >= l: npeop += 1 elif val < l: break if npeop >= l: ans = l print(ans) break else: continue