結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,784 KB
testcase_01 AC 36 ms
51,968 KB
testcase_02 AC 40 ms
51,200 KB
testcase_03 AC 37 ms
52,480 KB
testcase_04 AC 109 ms
73,984 KB
testcase_05 AC 90 ms
76,800 KB
testcase_06 AC 42 ms
58,880 KB
testcase_07 AC 49 ms
61,952 KB
testcase_08 AC 53 ms
62,976 KB
testcase_09 AC 74 ms
73,088 KB
testcase_10 AC 81 ms
76,160 KB
testcase_11 AC 68 ms
69,632 KB
testcase_12 AC 66 ms
68,736 KB
testcase_13 AC 76 ms
74,112 KB
testcase_14 AC 66 ms
69,120 KB
testcase_15 AC 75 ms
75,136 KB
testcase_16 AC 87 ms
76,884 KB
testcase_17 AC 60 ms
66,688 KB
testcase_18 AC 98 ms
76,544 KB
testcase_19 AC 1,634 ms
93,136 KB
testcase_20 TLE -
testcase_21 AC 1,281 ms
93,268 KB
testcase_22 AC 2,468 ms
95,056 KB
testcase_23 AC 2,060 ms
94,668 KB
testcase_24 AC 2,247 ms
93,528 KB
testcase_25 AC 5,397 ms
98,136 KB
testcase_26 AC 4,107 ms
94,300 KB
testcase_27 AC 2,183 ms
94,416 KB
testcase_28 AC 1,472 ms
93,128 KB
testcase_29 AC 1,858 ms
94,416 KB
testcase_30 AC 1,720 ms
92,884 KB
testcase_31 AC 1,552 ms
94,416 KB
testcase_32 AC 5,154 ms
97,100 KB
testcase_33 AC 5,592 ms
94,928 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
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 = 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:
            print(l)
            break
        else:
            continue
0