結果

問題 No.2372 既視感
ユーザー sasa8uyauyasasa8uyauya
提出日時 2024-03-19 23:34:35
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 92 ms / 2,000 ms
コード長 322 bytes
コンパイル時間 224 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 76,800 KB
最終ジャッジ日時 2024-09-30 05:53:50
合計ジャッジ時間 2,755 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,224 KB
testcase_01 AC 37 ms
51,840 KB
testcase_02 AC 38 ms
51,712 KB
testcase_03 AC 38 ms
51,584 KB
testcase_04 AC 37 ms
52,224 KB
testcase_05 AC 38 ms
51,840 KB
testcase_06 AC 37 ms
51,712 KB
testcase_07 AC 38 ms
51,840 KB
testcase_08 AC 82 ms
76,032 KB
testcase_09 AC 55 ms
61,952 KB
testcase_10 AC 72 ms
73,600 KB
testcase_11 AC 79 ms
76,288 KB
testcase_12 AC 37 ms
52,352 KB
testcase_13 AC 84 ms
76,672 KB
testcase_14 AC 43 ms
54,656 KB
testcase_15 AC 59 ms
67,456 KB
testcase_16 AC 56 ms
64,000 KB
testcase_17 AC 44 ms
55,168 KB
testcase_18 AC 41 ms
53,376 KB
testcase_19 AC 38 ms
52,992 KB
testcase_20 AC 38 ms
52,992 KB
testcase_21 AC 37 ms
52,480 KB
testcase_22 AC 40 ms
54,400 KB
testcase_23 AC 86 ms
76,672 KB
testcase_24 AC 92 ms
76,800 KB
testcase_25 AC 86 ms
76,672 KB
testcase_26 AC 89 ms
76,800 KB
testcase_27 AC 86 ms
76,672 KB
testcase_28 AC 89 ms
76,416 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,k,q=map(int,input().split())
a=["!"]*n
for _ in range(q):
	c=int(input())
	if c==1:
		s=input()
		a+=[s]
	else:
		v=0
		f=1
		r=[]
		for i in range(6):
			t,u=input().split()
			u=int(u)
			if t in a[len(a)-n:]:
				u=min(u,k)
			v+=u
			if v>60 and f:
				print(i)
				f=0
			if f:
				r+=[t]
		if f:
			print(6)
		a+=r
0