結果

問題 No.2372 既視感
ユーザー titiatitia
提出日時 2023-07-09 03:26:07
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 28 ms / 2,000 ms
コード長 576 bytes
コンパイル時間 108 ms
コンパイル使用メモリ 10,888 KB
実行使用メモリ 8,564 KB
最終ジャッジ日時 2023-09-30 05:49:10
合計ジャッジ時間 1,779 ms
ジャッジサーバーID
(参考情報)
judge11 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 13 ms
7,816 KB
testcase_01 AC 15 ms
7,828 KB
testcase_02 AC 13 ms
7,824 KB
testcase_03 AC 15 ms
7,836 KB
testcase_04 AC 14 ms
7,788 KB
testcase_05 AC 13 ms
7,836 KB
testcase_06 AC 13 ms
7,752 KB
testcase_07 AC 13 ms
7,840 KB
testcase_08 AC 19 ms
7,828 KB
testcase_09 AC 16 ms
7,952 KB
testcase_10 AC 19 ms
7,988 KB
testcase_11 AC 18 ms
7,820 KB
testcase_12 AC 14 ms
8,012 KB
testcase_13 AC 21 ms
7,824 KB
testcase_14 AC 15 ms
7,888 KB
testcase_15 AC 17 ms
7,860 KB
testcase_16 AC 16 ms
7,824 KB
testcase_17 AC 14 ms
7,952 KB
testcase_18 AC 15 ms
7,840 KB
testcase_19 AC 13 ms
7,812 KB
testcase_20 AC 14 ms
7,756 KB
testcase_21 AC 13 ms
7,888 KB
testcase_22 AC 14 ms
7,952 KB
testcase_23 AC 23 ms
7,800 KB
testcase_24 AC 22 ms
7,868 KB
testcase_25 AC 23 ms
7,784 KB
testcase_26 AC 23 ms
7,752 KB
testcase_27 AC 23 ms
7,848 KB
testcase_28 AC 28 ms
8,564 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,K,Q=map(int,input().split())
A=[]

for tests in range(Q):
    x=int(input())
    if x==1:
        s=input()
        A.append(s)
    else:
        X=[]
        now=0

        U=[input().split() for i in range(6)]

        for tests in range(6):
            x,y=U[tests]
            y=int(y)

            if x in A[max(0,len(A)-N):]:
                now+=min(K,y)
            else:
                now+=y

            if now<=60:
                X.append(x)
            else:
                print(tests)
                break
        else:
            print(6)

        A+=X
0