結果

問題 No.618 labo-index
ユーザー RyutoRyuto
提出日時 2017-12-18 21:23:36
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 598 bytes
コンパイル時間 239 ms
コンパイル使用メモリ 82,204 KB
実行使用メモリ 109,424 KB
最終ジャッジ日時 2024-05-09 11:51:35
合計ジャッジ時間 9,698 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
53,480 KB
testcase_01 AC 35 ms
52,580 KB
testcase_02 AC 35 ms
52,676 KB
testcase_03 AC 35 ms
53,280 KB
testcase_04 AC 85 ms
76,740 KB
testcase_05 AC 99 ms
77,212 KB
testcase_06 AC 43 ms
61,180 KB
testcase_07 AC 50 ms
65,172 KB
testcase_08 AC 55 ms
67,172 KB
testcase_09 AC 69 ms
74,308 KB
testcase_10 AC 93 ms
76,608 KB
testcase_11 AC 68 ms
74,140 KB
testcase_12 AC 66 ms
71,548 KB
testcase_13 AC 80 ms
76,744 KB
testcase_14 AC 70 ms
74,956 KB
testcase_15 AC 84 ms
76,656 KB
testcase_16 AC 100 ms
76,932 KB
testcase_17 AC 63 ms
69,740 KB
testcase_18 AC 113 ms
77,308 KB
testcase_19 TLE -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
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
labo_indexs = {}
for event in events:
    if event[0] == 1:
        labo_indexs[i] = event[1]
        i += 1
    elif event[0] == 2:
        del labo_indexs[event[1]]
    elif event[0] == 3:
        labo_indexs = dict([(x, y+event[1]) for (x, y) in labo_indexs.items()])

    vals = labo_indexs.values()
    for l in range(len(vals), -1, -1):
        if len([x for x in vals if x >= l]) >= l:
            print(l)
            break
        else:
            continue
0