結果

問題 No.618 labo-index
ユーザー RyutoRyuto
提出日時 2017-12-18 21:39:58
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 940 bytes
コンパイル時間 361 ms
コンパイル使用メモリ 81,536 KB
実行使用メモリ 98,644 KB
最終ジャッジ日時 2024-05-09 11:57:27
合計ジャッジ時間 44,175 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
51,840 KB
testcase_01 AC 37 ms
51,840 KB
testcase_02 AC 36 ms
51,840 KB
testcase_03 AC 37 ms
51,968 KB
testcase_04 AC 80 ms
76,672 KB
testcase_05 AC 88 ms
76,672 KB
testcase_06 AC 41 ms
57,984 KB
testcase_07 AC 53 ms
63,744 KB
testcase_08 AC 51 ms
62,848 KB
testcase_09 AC 63 ms
67,328 KB
testcase_10 AC 73 ms
74,752 KB
testcase_11 AC 61 ms
65,920 KB
testcase_12 AC 56 ms
65,792 KB
testcase_13 AC 69 ms
72,448 KB
testcase_14 AC 56 ms
66,560 KB
testcase_15 AC 81 ms
76,544 KB
testcase_16 AC 87 ms
76,672 KB
testcase_17 AC 56 ms
65,408 KB
testcase_18 AC 104 ms
77,952 KB
testcase_19 AC 2,360 ms
93,776 KB
testcase_20 AC 5,001 ms
98,644 KB
testcase_21 AC 1,038 ms
93,648 KB
testcase_22 AC 3,979 ms
94,412 KB
testcase_23 AC 1,546 ms
93,772 KB
testcase_24 AC 870 ms
92,632 KB
testcase_25 AC 4,106 ms
97,492 KB
testcase_26 AC 1,499 ms
94,288 KB
testcase_27 AC 1,599 ms
93,520 KB
testcase_28 AC 1,029 ms
92,884 KB
testcase_29 AC 2,541 ms
93,912 KB
testcase_30 AC 847 ms
91,984 KB
testcase_31 AC 2,055 ms
93,780 KB
testcase_32 AC 3,733 ms
96,340 KB
testcase_33 AC 2,094 ms
94,424 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