結果
問題 | No.714 回転寿司屋のシミュレート |
ユーザー | tenten |
提出日時 | 2020-10-14 13:31:41 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 270 ms / 2,000 ms |
コード長 | 1,690 bytes |
コンパイル時間 | 2,197 ms |
コンパイル使用メモリ | 79,256 KB |
実行使用メモリ | 46,832 KB |
最終ジャッジ日時 | 2024-07-20 19:06:52 |
合計ジャッジ時間 | 10,321 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 118 ms
40,412 KB |
testcase_01 | AC | 130 ms
41,856 KB |
testcase_02 | AC | 156 ms
41,700 KB |
testcase_03 | AC | 174 ms
42,064 KB |
testcase_04 | AC | 186 ms
42,388 KB |
testcase_05 | AC | 194 ms
43,404 KB |
testcase_06 | AC | 218 ms
45,892 KB |
testcase_07 | AC | 239 ms
46,420 KB |
testcase_08 | AC | 270 ms
46,832 KB |
testcase_09 | AC | 239 ms
45,912 KB |
testcase_10 | AC | 234 ms
46,148 KB |
testcase_11 | AC | 217 ms
44,188 KB |
testcase_12 | AC | 211 ms
44,928 KB |
testcase_13 | AC | 215 ms
44,416 KB |
testcase_14 | AC | 216 ms
45,120 KB |
testcase_15 | AC | 214 ms
45,252 KB |
testcase_16 | AC | 195 ms
44,852 KB |
testcase_17 | AC | 224 ms
45,920 KB |
testcase_18 | AC | 222 ms
44,636 KB |
testcase_19 | AC | 210 ms
44,196 KB |
testcase_20 | AC | 206 ms
44,160 KB |
testcase_21 | AC | 205 ms
44,808 KB |
testcase_22 | AC | 205 ms
44,152 KB |
testcase_23 | AC | 210 ms
44,832 KB |
testcase_24 | AC | 199 ms
44,652 KB |
testcase_25 | AC | 217 ms
44,564 KB |
testcase_26 | AC | 225 ms
43,528 KB |
testcase_27 | AC | 218 ms
44,764 KB |
testcase_28 | AC | 189 ms
43,976 KB |
testcase_29 | AC | 191 ms
44,484 KB |
testcase_30 | AC | 110 ms
40,016 KB |
testcase_31 | AC | 125 ms
41,596 KB |
testcase_32 | AC | 131 ms
41,332 KB |
testcase_33 | AC | 105 ms
39,748 KB |
testcase_34 | AC | 125 ms
41,516 KB |
ソースコード
import java.util.*; public class Main { public static void main (String[] args) { Scanner sc = new Scanner(System.in); int n = sc.nextInt(); Customer[] customers = new Customer[20]; StringBuilder sb = new StringBuilder(); for (int i = 0; i < n; i++) { int type = sc.nextInt(); if (type == 1) { boolean eated = false; String sushi = sc.next(); for (int j = 0; j < 20; j++) { if (customers[j] != null && customers[j].hasEat(sushi)) { sb.append(j + 1).append("\n"); eated = true; break; } } if (!eated) { sb.append(-1).append("\n"); } } else if (type == 0) { int idx = sc.nextInt() - 1; customers[idx] = new Customer(); int count = sc.nextInt(); for (int j = 0; j < count; j++) { customers[idx].add(sc.next()); } } else { customers[sc.nextInt() - 1] = null; } } System.out.print(sb); } static class Customer { HashMap<String, Integer> map = new HashMap<>(); public void add(String sushi) { map.put(sushi, map.getOrDefault(sushi, 0) + 1); } public boolean hasEat(String sushi) { if (map.containsKey(sushi)) { if (map.get(sushi) == 1) { map.remove(sushi); } else { map.put(sushi, map.get(sushi) - 1); } return true; } else { return false; } } } }