結果

問題 No.945 YKC饅頭
ユーザー tentententen
提出日時 2021-03-11 08:29:37
言語 Java
(openjdk 23)
結果
AC  
実行時間 1,610 ms / 2,000 ms
コード長 872 bytes
コンパイル時間 3,203 ms
コンパイル使用メモリ 80,192 KB
実行使用メモリ 74,512 KB
最終ジャッジ日時 2024-10-12 22:49:15
合計ジャッジ時間 55,905 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 161 ms
42,416 KB
testcase_01 AC 164 ms
42,716 KB
testcase_02 AC 218 ms
45,232 KB
testcase_03 AC 255 ms
45,764 KB
testcase_04 AC 209 ms
45,140 KB
testcase_05 AC 230 ms
45,284 KB
testcase_06 AC 234 ms
44,436 KB
testcase_07 AC 235 ms
43,904 KB
testcase_08 AC 177 ms
43,212 KB
testcase_09 AC 222 ms
44,656 KB
testcase_10 AC 239 ms
44,596 KB
testcase_11 AC 236 ms
45,536 KB
testcase_12 AC 242 ms
44,204 KB
testcase_13 AC 256 ms
45,060 KB
testcase_14 AC 255 ms
45,140 KB
testcase_15 AC 218 ms
44,144 KB
testcase_16 AC 219 ms
45,344 KB
testcase_17 AC 236 ms
46,052 KB
testcase_18 AC 238 ms
44,132 KB
testcase_19 AC 176 ms
43,076 KB
testcase_20 AC 203 ms
43,520 KB
testcase_21 AC 217 ms
44,120 KB
testcase_22 AC 265 ms
46,960 KB
testcase_23 AC 267 ms
45,944 KB
testcase_24 AC 266 ms
46,364 KB
testcase_25 AC 271 ms
46,432 KB
testcase_26 AC 287 ms
46,760 KB
testcase_27 AC 199 ms
43,152 KB
testcase_28 AC 192 ms
42,952 KB
testcase_29 AC 162 ms
42,908 KB
testcase_30 AC 159 ms
42,544 KB
testcase_31 AC 430 ms
49,024 KB
testcase_32 AC 414 ms
51,324 KB
testcase_33 AC 793 ms
55,516 KB
testcase_34 AC 1,010 ms
56,628 KB
testcase_35 AC 1,225 ms
62,616 KB
testcase_36 AC 1,000 ms
51,572 KB
testcase_37 AC 1,050 ms
51,576 KB
testcase_38 AC 1,075 ms
52,456 KB
testcase_39 AC 638 ms
50,940 KB
testcase_40 AC 680 ms
55,308 KB
testcase_41 AC 461 ms
51,328 KB
testcase_42 AC 1,185 ms
59,432 KB
testcase_43 AC 1,017 ms
51,604 KB
testcase_44 AC 1,160 ms
59,356 KB
testcase_45 AC 1,241 ms
59,864 KB
testcase_46 AC 322 ms
50,136 KB
testcase_47 AC 1,161 ms
58,092 KB
testcase_48 AC 594 ms
48,920 KB
testcase_49 AC 799 ms
53,376 KB
testcase_50 AC 1,201 ms
58,096 KB
testcase_51 AC 1,381 ms
66,572 KB
testcase_52 AC 1,214 ms
66,484 KB
testcase_53 AC 1,268 ms
66,036 KB
testcase_54 AC 1,412 ms
71,228 KB
testcase_55 AC 1,383 ms
69,580 KB
testcase_56 AC 362 ms
58,740 KB
testcase_57 AC 303 ms
57,956 KB
testcase_58 AC 1,531 ms
74,512 KB
testcase_59 AC 1,610 ms
74,416 KB
testcase_60 AC 1,059 ms
73,316 KB
testcase_61 AC 1,362 ms
69,436 KB
testcase_62 AC 1,550 ms
74,232 KB
testcase_63 AC 417 ms
60,172 KB
testcase_64 AC 1,075 ms
74,164 KB
testcase_65 AC 1,021 ms
70,572 KB
testcase_66 AC 972 ms
70,468 KB
testcase_67 AC 1,305 ms
74,232 KB
testcase_68 AC 1,137 ms
73,032 KB
testcase_69 AC 699 ms
63,824 KB
testcase_70 AC 768 ms
64,168 KB
testcase_71 AC 756 ms
64,268 KB
testcase_72 AC 1,182 ms
73,512 KB
testcase_73 AC 1,549 ms
74,280 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
	public static void main (String[] args) {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		int m = sc.nextInt();
		TreeSet<Integer> empty = new TreeSet<>();
		for (int i = 1; i <= n; i++) {
		    empty.add(i);
		}
		int[] counts = new int[3];
		for (int i = 0; i < m; i++) {
		    int left = sc.nextInt();
		    int right = sc.nextInt();
		    char type = sc.next().charAt(0);
		    int idx;
		    if (type == 'Y') {
		        idx = 0;
		    } else if (type == 'K') {
		        idx = 1;
		    } else {
		        idx = 2;
		    }
		    Integer key = left - 1;
		    while ((key = empty.higher(key)) != null) {
		        if (key > right) {
		            break;
		        }
		        counts[idx]++;
		        empty.remove(key);
		    }
		}
		System.out.println(counts[0] + " " + counts[1] + " " + counts[2]);
   }
}

0