結果

問題 No.714 回転寿司屋のシミュレート
ユーザー tentententen
提出日時 2023-02-15 16:41:09
言語 Java21
(openjdk 21)
結果
AC  
実行時間 156 ms / 2,000 ms
コード長 2,743 bytes
コンパイル時間 2,849 ms
コンパイル使用メモリ 85,604 KB
実行使用メモリ 53,236 KB
最終ジャッジ日時 2024-07-18 01:29:56
合計ジャッジ時間 6,983 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 50 ms
50,416 KB
testcase_01 AC 48 ms
50,248 KB
testcase_02 AC 53 ms
50,320 KB
testcase_03 AC 58 ms
50,552 KB
testcase_04 AC 91 ms
51,516 KB
testcase_05 AC 113 ms
52,616 KB
testcase_06 AC 131 ms
53,052 KB
testcase_07 AC 152 ms
53,156 KB
testcase_08 AC 156 ms
53,236 KB
testcase_09 AC 131 ms
53,160 KB
testcase_10 AC 129 ms
53,120 KB
testcase_11 AC 123 ms
52,616 KB
testcase_12 AC 124 ms
52,620 KB
testcase_13 AC 119 ms
51,912 KB
testcase_14 AC 122 ms
52,376 KB
testcase_15 AC 110 ms
52,528 KB
testcase_16 AC 117 ms
52,136 KB
testcase_17 AC 112 ms
53,096 KB
testcase_18 AC 122 ms
52,328 KB
testcase_19 AC 108 ms
52,120 KB
testcase_20 AC 126 ms
52,444 KB
testcase_21 AC 110 ms
52,356 KB
testcase_22 AC 101 ms
51,616 KB
testcase_23 AC 108 ms
52,148 KB
testcase_24 AC 100 ms
51,112 KB
testcase_25 AC 90 ms
51,512 KB
testcase_26 AC 102 ms
51,548 KB
testcase_27 AC 101 ms
51,912 KB
testcase_28 AC 94 ms
51,632 KB
testcase_29 AC 92 ms
52,144 KB
testcase_30 AC 53 ms
50,704 KB
testcase_31 AC 54 ms
50,628 KB
testcase_32 AC 53 ms
50,456 KB
testcase_33 AC 49 ms
50,300 KB
testcase_34 AC 51 ms
50,476 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;
import java.util.stream.*;

public class Main {
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        int n = sc.nextInt();
        StringBuilder sb = new StringBuilder();
        TreeMap<Integer, HashMap<String, Integer>> place = new TreeMap<>();
        while (n-- > 0) {
            int type = sc.nextInt();
            if (type == 0) {
                int k = sc.nextInt();
                int x = sc.nextInt();
                HashMap<String, Integer> tmp = new HashMap<>();
                for (int i = 0; i < x; i++) {
                    String menu = sc.next();
                    tmp.put(menu, tmp.getOrDefault(menu, 0) + 1);
                }
                place.put(k, tmp);
            } else if (type == 1) {
                String menu = sc.next();
                int ans = -1;
                for (int x : place.keySet()) {
                    if (place.get(x).containsKey(menu)) {
                        if (place.get(x).get(menu) == 1) {
                            place.get(x).remove(menu);
                        } else {
                            place.get(x).put(menu, place.get(x).get(menu) - 1);
                        }
                        ans = x;
                        break;
                    }
                }
                sb.append(ans).append("\n");
            } else {
                place.remove(sc.nextInt());
            }
        }
        System.out.print(sb);
    }
}
class Utilities {
    static String arrayToLineString(Object[] arr) {
        return Arrays.stream(arr).map(x -> x.toString()).collect(Collectors.joining("\n"));
    }
    
    static String arrayToLineString(int[] arr) {
        return String.join("\n", Arrays.stream(arr).mapToObj(String::valueOf).toArray(String[]::new));
    }
}
class Scanner {
    BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
    StringTokenizer st = new StringTokenizer("");
    StringBuilder sb = new StringBuilder();
    
    public Scanner() throws Exception {
        
    }
    
    public int nextInt() throws Exception {
        return Integer.parseInt(next());
    }
    
    public long nextLong() throws Exception {
        return Long.parseLong(next());
    }
    
    public double nextDouble() throws Exception {
        return Double.parseDouble(next());
    }
    
    public int[] nextIntArray() throws Exception {
        return Stream.of(br.readLine().split(" ")).mapToInt(Integer::parseInt).toArray();
    }
    
    public String next() throws Exception {
        while (!st.hasMoreTokens()) {
            st = new StringTokenizer(br.readLine());
        }
        return st.nextToken();
    }
    
}
0