結果

問題 No.2372 既視感
ユーザー kakel-sankakel-san
提出日時 2023-07-07 21:41:10
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 37 ms / 2,000 ms
コード長 1,779 bytes
コンパイル時間 5,037 ms
コンパイル使用メモリ 111,424 KB
実行使用メモリ 27,544 KB
最終ジャッジ日時 2024-07-21 17:27:24
合計ジャッジ時間 3,276 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
25,520 KB
testcase_01 AC 32 ms
25,648 KB
testcase_02 AC 32 ms
27,300 KB
testcase_03 AC 33 ms
25,652 KB
testcase_04 AC 32 ms
25,264 KB
testcase_05 AC 32 ms
25,396 KB
testcase_06 AC 34 ms
27,536 KB
testcase_07 AC 33 ms
25,396 KB
testcase_08 AC 34 ms
25,392 KB
testcase_09 AC 33 ms
25,776 KB
testcase_10 AC 35 ms
27,432 KB
testcase_11 AC 34 ms
25,648 KB
testcase_12 AC 33 ms
25,520 KB
testcase_13 AC 34 ms
27,412 KB
testcase_14 AC 33 ms
27,404 KB
testcase_15 AC 32 ms
23,472 KB
testcase_16 AC 32 ms
23,220 KB
testcase_17 AC 32 ms
25,644 KB
testcase_18 AC 33 ms
27,544 KB
testcase_19 AC 33 ms
25,648 KB
testcase_20 AC 32 ms
25,772 KB
testcase_21 AC 32 ms
25,372 KB
testcase_22 AC 35 ms
27,536 KB
testcase_23 AC 34 ms
25,520 KB
testcase_24 AC 33 ms
25,520 KB
testcase_25 AC 33 ms
25,264 KB
testcase_26 AC 34 ms
27,456 KB
testcase_27 AC 33 ms
23,856 KB
testcase_28 AC 37 ms
25,776 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using System;
using static System.Console;
using System.Linq;
using System.Collections.Generic;
class Program
{
    static int NN => int.Parse(ReadLine());
    static int[] NList => ReadLine().Split().Select(int.Parse).ToArray();
    public static void Main()
    {
        Solve();
    }
    static void Solve()
    {
        var c = NList;
        var (n, k, q) = (c[0], c[1], c[2]);
        var que = new Queue<string>();
        var dic = new Dictionary<string, int>();
        var ans = new List<int>();
        for (var i = 0; i < q; ++i)
        {
            var r = NN;
            if (r == 1)
            {
                var s = ReadLine();
                que.Enqueue(s);
                if (dic.ContainsKey(s)) ++dic[s];
                else dic[s] = 1;
            }
            else
            {
                var time = 0;
                var que2 = new Queue<string>();
                for (var j = 0; j < 6; ++j)
                {
                    var s = ReadLine().Split();
                    var (t, d) = (s[0], int.Parse(s[1]));
                    if (dic.ContainsKey(t) && dic[t] > 0) d = Math.Min(d, k);
                    time += d;
                    if (time <= 60)
                    {
                        que2.Enqueue(t);
                    }
                }
                ans.Add(que2.Count);
                while (que2.Count > 0)
                {
                    var u = que2.Dequeue();
                    que.Enqueue(u);
                    if (dic.ContainsKey(u)) ++dic[u];
                    else dic[u] = 1;
                }
            }
            while (que.Count > n) --dic[que.Dequeue()];
        }
        WriteLine(string.Join("\n", ans));
    }
}
0