結果
問題 | No.606 カラフルタイル |
ユーザー | takeya_okino |
提出日時 | 2019-09-01 13:29:42 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 991 bytes |
コンパイル時間 | 2,223 ms |
コンパイル使用メモリ | 77,076 KB |
実行使用メモリ | 75,588 KB |
最終ジャッジ日時 | 2024-05-05 20:58:29 |
合計ジャッジ時間 | 20,144 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 134 ms
41,712 KB |
testcase_01 | AC | 131 ms
41,392 KB |
testcase_02 | WA | - |
testcase_03 | AC | 133 ms
41,212 KB |
testcase_04 | AC | 136 ms
41,508 KB |
testcase_05 | AC | 135 ms
41,384 KB |
testcase_06 | AC | 135 ms
41,208 KB |
testcase_07 | WA | - |
testcase_08 | AC | 134 ms
41,516 KB |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | AC | 327 ms
48,048 KB |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | AC | 882 ms
58,324 KB |
testcase_17 | AC | 1,371 ms
65,736 KB |
testcase_18 | WA | - |
testcase_19 | AC | 841 ms
60,372 KB |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | AC | 1,383 ms
66,220 KB |
testcase_27 | WA | - |
ソースコード
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]); } } }