結果

問題 No.2372 既視感
ユーザー 👑 p-adicp-adic
提出日時 2023-07-07 21:49:02
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 148 ms / 2,000 ms
コード長 359 bytes
コンパイル時間 344 ms
コンパイル使用メモリ 82,236 KB
実行使用メモリ 76,556 KB
最終ジャッジ日時 2024-07-21 17:39:38
合計ジャッジ時間 3,285 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,968 KB
testcase_01 AC 41 ms
51,968 KB
testcase_02 AC 41 ms
51,840 KB
testcase_03 AC 40 ms
51,968 KB
testcase_04 AC 42 ms
51,968 KB
testcase_05 AC 40 ms
52,096 KB
testcase_06 AC 45 ms
51,840 KB
testcase_07 AC 45 ms
51,584 KB
testcase_08 AC 99 ms
76,288 KB
testcase_09 AC 63 ms
63,744 KB
testcase_10 AC 86 ms
76,032 KB
testcase_11 AC 98 ms
76,104 KB
testcase_12 AC 42 ms
52,608 KB
testcase_13 AC 110 ms
76,556 KB
testcase_14 AC 53 ms
60,288 KB
testcase_15 AC 84 ms
72,704 KB
testcase_16 AC 87 ms
73,936 KB
testcase_17 AC 53 ms
60,032 KB
testcase_18 AC 53 ms
59,776 KB
testcase_19 AC 44 ms
52,864 KB
testcase_20 AC 49 ms
59,520 KB
testcase_21 AC 47 ms
58,752 KB
testcase_22 AC 52 ms
59,520 KB
testcase_23 AC 107 ms
76,032 KB
testcase_24 AC 100 ms
76,032 KB
testcase_25 AC 97 ms
76,288 KB
testcase_26 AC 97 ms
75,904 KB
testcase_27 AC 107 ms
76,288 KB
testcase_28 AC 148 ms
76,496 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

I,R,P=input,range,print
def J():
	return map(int,I().split())
N,K,Q=J()
A=[]
for q in R(Q):
	t=I()
	if t=="1":A+=[I()]
	else:
		i,c,B=60,6,[]
		while i*c>0:
			t,d=I().split()
			d=int(d)
			for a in A[-N:]:
				if t==a:d=min(d,K)
			i,c=i-d,c-1
			B+=[t]
		if i<0:
			P(6-c-1),B.pop()
		else:P(6-c)
		for b in B:A+=[b]
		while c>0:
			t,d=I().split()
			c-=1
0