結果

問題 No.606 カラフルタイル
ユーザー takeya_okinotakeya_okino
提出日時 2019-09-01 14:09:39
言語 Java21
(openjdk 21)
結果
AC  
実行時間 1,403 ms / 2,000 ms
コード長 1,112 bytes
コンパイル時間 2,258 ms
コンパイル使用メモリ 77,072 KB
実行使用メモリ 67,388 KB
最終ジャッジ日時 2024-11-27 23:47:28
合計ジャッジ時間 18,270 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 104 ms
40,956 KB
testcase_01 AC 99 ms
40,404 KB
testcase_02 AC 107 ms
41,556 KB
testcase_03 AC 105 ms
40,316 KB
testcase_04 AC 117 ms
41,116 KB
testcase_05 AC 112 ms
40,204 KB
testcase_06 AC 121 ms
41,288 KB
testcase_07 AC 116 ms
39,884 KB
testcase_08 AC 143 ms
41,020 KB
testcase_09 AC 131 ms
41,432 KB
testcase_10 AC 133 ms
41,280 KB
testcase_11 AC 117 ms
41,028 KB
testcase_12 AC 127 ms
41,848 KB
testcase_13 AC 279 ms
48,344 KB
testcase_14 AC 123 ms
41,924 KB
testcase_15 AC 172 ms
44,248 KB
testcase_16 AC 741 ms
58,472 KB
testcase_17 AC 1,163 ms
64,888 KB
testcase_18 AC 724 ms
58,632 KB
testcase_19 AC 687 ms
62,660 KB
testcase_20 AC 1,153 ms
64,040 KB
testcase_21 AC 759 ms
60,464 KB
testcase_22 AC 748 ms
60,240 KB
testcase_23 AC 890 ms
64,664 KB
testcase_24 AC 1,251 ms
65,564 KB
testcase_25 AC 1,200 ms
64,312 KB
testcase_26 AC 1,403 ms
65,500 KB
testcase_27 AC 1,360 ms
67,388 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
  public static void main(String[] args) {
    Scanner sc = new Scanner(System.in);
    long n = sc.nextLong();
    int k = sc.nextInt();
    int q = sc.nextInt();
    int[] row = new int[(int)n];
    int[] column = new int[(int)n];
    int r = 0;
    int c = 0;
    String[] a = new String[q];
    int[] B = new int[q];
    int[] C = new int[q];
    for(int i = 0; i < q; i++) {
      a[i] = sc.next();
      B[i] = sc.nextInt() - 1;
      C[i] = sc.nextInt() - 1;
    }
    long[] ans = new long[k];
    for(int i = q - 1; i >= 0; i--) {
      if(a[i].equals("R")) {
        if(row[B[i]] == 1) {
          
        } else {
          row[B[i]]++;
          r++;
          ans[C[i]] += (n - c);
        }
      } else {
        if(column[B[i]] == 1) {
          
        } else {
          column[B[i]]++;
          c++;
          ans[C[i]] += (n - r);
        }        
      }
    }
    long sum = 0;
    for(int i = 0; i < k; i++) {
      sum += ans[i];
    }
    ans[0] += (n * n - sum);
    for(int i = 0; i < k; i++) {
      System.out.println(ans[i]);
    }
  }
}
0