結果

問題 No.606 カラフルタイル
ユーザー takeya_okinotakeya_okino
提出日時 2019-09-01 14:06:38
言語 Java
(openjdk 23)
結果
WA  
実行時間 -
コード長 1,100 bytes
コンパイル時間 2,148 ms
コンパイル使用メモリ 77,684 KB
実行使用メモリ 66,692 KB
最終ジャッジ日時 2024-11-27 23:42:51
合計ジャッジ時間 17,002 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 125 ms
41,204 KB
testcase_01 AC 124 ms
41,300 KB
testcase_02 WA -
testcase_03 AC 122 ms
41,036 KB
testcase_04 AC 112 ms
40,176 KB
testcase_05 AC 124 ms
41,284 KB
testcase_06 AC 127 ms
41,468 KB
testcase_07 AC 126 ms
41,312 KB
testcase_08 AC 116 ms
41,280 KB
testcase_09 AC 110 ms
41,116 KB
testcase_10 AC 114 ms
40,308 KB
testcase_11 AC 107 ms
40,896 KB
testcase_12 AC 128 ms
41,372 KB
testcase_13 AC 276 ms
48,456 KB
testcase_14 WA -
testcase_15 AC 179 ms
43,832 KB
testcase_16 AC 705 ms
58,276 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 651 ms
57,176 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