結果

問題 No.714 回転寿司屋のシミュレート
ユーザー htensaihtensai
提出日時 2020-02-13 20:33:06
言語 Java21
(openjdk 21)
結果
AC  
実行時間 250 ms / 2,000 ms
コード長 1,080 bytes
コンパイル時間 2,025 ms
コンパイル使用メモリ 78,748 KB
実行使用メモリ 47,384 KB
最終ジャッジ日時 2024-10-06 06:22:07
合計ジャッジ時間 9,466 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 109 ms
41,296 KB
testcase_01 AC 107 ms
41,100 KB
testcase_02 AC 146 ms
41,752 KB
testcase_03 AC 166 ms
42,076 KB
testcase_04 AC 169 ms
42,336 KB
testcase_05 AC 182 ms
43,408 KB
testcase_06 AC 202 ms
45,600 KB
testcase_07 AC 222 ms
45,808 KB
testcase_08 AC 250 ms
47,384 KB
testcase_09 AC 211 ms
46,040 KB
testcase_10 AC 208 ms
45,892 KB
testcase_11 AC 176 ms
44,356 KB
testcase_12 AC 202 ms
44,664 KB
testcase_13 AC 187 ms
43,900 KB
testcase_14 AC 194 ms
44,316 KB
testcase_15 AC 195 ms
44,448 KB
testcase_16 AC 200 ms
44,116 KB
testcase_17 AC 204 ms
45,744 KB
testcase_18 AC 192 ms
44,332 KB
testcase_19 AC 188 ms
43,740 KB
testcase_20 AC 186 ms
44,252 KB
testcase_21 AC 187 ms
43,820 KB
testcase_22 AC 185 ms
44,140 KB
testcase_23 AC 189 ms
43,856 KB
testcase_24 AC 193 ms
44,468 KB
testcase_25 AC 188 ms
44,248 KB
testcase_26 AC 193 ms
43,720 KB
testcase_27 AC 197 ms
44,092 KB
testcase_28 AC 188 ms
43,760 KB
testcase_29 AC 190 ms
44,076 KB
testcase_30 AC 130 ms
41,208 KB
testcase_31 AC 140 ms
41,108 KB
testcase_32 AC 133 ms
41,184 KB
testcase_33 AC 121 ms
41,384 KB
testcase_34 AC 122 ms
41,272 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
	public static void main (String[] args) {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		final int SIZE = 20;
		ArrayList<String>[] seats = new ArrayList[SIZE];
		StringBuilder sb = new StringBuilder();
		for (int i = 0; i < n; i++) {
		    int type = sc.nextInt();
		    if (type == 0) {
		        int idx = sc.nextInt() - 1;
		        int m = sc.nextInt();
		        ArrayList<String> list = new ArrayList<>();
		        for (int j = 0; j < m; j++) {
		            list.add(sc.next());
		        }
		        seats[idx] = list;
		    } else if (type == 1) {
		        int idx = -1;
		        String dish = sc.next();
		        for (int j = 0; j < SIZE && idx < 0; j++) {
		            if (seats[j] == null) {
		                continue;
		            }
		            if (seats[j].remove(dish)) {
		                idx = j + 1;
		                break;
		            }
		        }
		        sb.append(idx).append("\n");
		    } else {
		        seats[sc.nextInt() - 1] = null;
		    }
		}
		System.out.print(sb);
   }
}
0