結果

問題 No.606 カラフルタイル
ユーザー takeya_okinotakeya_okino
提出日時 2019-09-01 13:29:42
言語 Java
(openjdk 23)
結果
WA  
実行時間 -
コード長 991 bytes
コンパイル時間 2,737 ms
コンパイル使用メモリ 76,724 KB
実行使用メモリ 66,068 KB
最終ジャッジ日時 2024-11-27 22:09:29
合計ジャッジ時間 21,366 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 146 ms
41,336 KB
testcase_01 AC 143 ms
41,592 KB
testcase_02 WA -
testcase_03 AC 139 ms
41,088 KB
testcase_04 AC 143 ms
41,748 KB
testcase_05 AC 147 ms
41,060 KB
testcase_06 AC 144 ms
41,196 KB
testcase_07 WA -
testcase_08 AC 144 ms
41,440 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 345 ms
48,352 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 915 ms
58,052 KB
testcase_17 AC 1,444 ms
65,944 KB
testcase_18 WA -
testcase_19 AC 888 ms
60,536 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 1,452 ms
65,868 KB
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;
    }
    int[] ans = new int[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);
        }        
      }
    }
    for(int i = 0; i < k; i++) {
      System.out.println(ans[i]);
    }
  }
}
0