結果

問題 No.618 labo-index
ユーザー RyutoRyuto
提出日時 2017-12-18 21:49:28
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 940 bytes
コンパイル時間 142 ms
コンパイル使用メモリ 82,460 KB
実行使用メモリ 98,640 KB
最終ジャッジ日時 2024-05-09 12:00:17
合計ジャッジ時間 44,774 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,508 KB
testcase_01 AC 38 ms
52,196 KB
testcase_02 AC 37 ms
52,128 KB
testcase_03 AC 42 ms
53,224 KB
testcase_04 AC 79 ms
76,944 KB
testcase_05 AC 92 ms
77,284 KB
testcase_06 AC 42 ms
59,928 KB
testcase_07 AC 54 ms
66,064 KB
testcase_08 AC 52 ms
63,560 KB
testcase_09 AC 63 ms
69,404 KB
testcase_10 AC 76 ms
75,196 KB
testcase_11 AC 60 ms
67,132 KB
testcase_12 AC 59 ms
67,564 KB
testcase_13 AC 74 ms
73,704 KB
testcase_14 AC 60 ms
68,424 KB
testcase_15 AC 81 ms
76,376 KB
testcase_16 AC 90 ms
76,972 KB
testcase_17 AC 59 ms
67,844 KB
testcase_18 AC 108 ms
77,852 KB
testcase_19 AC 2,431 ms
93,772 KB
testcase_20 AC 5,191 ms
98,640 KB
testcase_21 AC 1,060 ms
93,904 KB
testcase_22 AC 4,073 ms
95,184 KB
testcase_23 AC 1,563 ms
94,284 KB
testcase_24 AC 901 ms
92,748 KB
testcase_25 AC 4,071 ms
98,228 KB
testcase_26 AC 1,507 ms
95,188 KB
testcase_27 AC 1,574 ms
94,536 KB
testcase_28 AC 1,049 ms
92,628 KB
testcase_29 AC 2,530 ms
94,160 KB
testcase_30 AC 867 ms
92,372 KB
testcase_31 AC 2,113 ms
93,652 KB
testcase_32 AC 3,814 ms
96,464 KB
testcase_33 AC 2,052 ms
94,924 KB
testcase_34 TLE -
testcase_35 -- -
testcase_36 -- -
testcase_37 -- -
testcase_38 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/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
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 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), -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
0