結果

問題 No.606 カラフルタイル
ユーザー takeya_okinotakeya_okino
提出日時 2019-09-01 14:06:38
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,100 bytes
コンパイル時間 1,762 ms
コンパイル使用メモリ 77,288 KB
実行使用メモリ 67,112 KB
最終ジャッジ日時 2024-05-05 22:20:19
合計ジャッジ時間 16,974 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 104 ms
40,380 KB
testcase_01 AC 98 ms
40,324 KB
testcase_02 WA -
testcase_03 AC 114 ms
41,132 KB
testcase_04 AC 106 ms
40,032 KB
testcase_05 AC 109 ms
40,848 KB
testcase_06 AC 104 ms
40,168 KB
testcase_07 AC 109 ms
40,992 KB
testcase_08 AC 109 ms
41,136 KB
testcase_09 AC 112 ms
41,004 KB
testcase_10 AC 112 ms
41,068 KB
testcase_11 AC 110 ms
41,284 KB
testcase_12 AC 133 ms
41,316 KB
testcase_13 AC 294 ms
48,116 KB
testcase_14 WA -
testcase_15 AC 187 ms
44,112 KB
testcase_16 AC 696 ms
57,440 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 685 ms
62,448 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
  public static void main(String[] args) {
    Scanner sc = new Scanner(System.in);
    int n = sc.nextInt();
    int k = sc.nextInt();
    int q = sc.nextInt();
    int[] row = new int[n];
    int[] column = new 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