結果
問題 | No.11 カードマッチ |
ユーザー | Himatsubushin |
提出日時 | 2022-12-17 11:57:10 |
言語 | C (gcc 12.3.0) |
結果 |
MLE
|
実行時間 | - |
コード長 | 882 bytes |
コンパイル時間 | 1,460 ms |
コンパイル使用メモリ | 30,080 KB |
実行使用メモリ | 809,216 KB |
最終ジャッジ日時 | 2024-11-16 20:38:09 |
合計ジャッジ時間 | 30,260 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
10,496 KB |
testcase_01 | AC | 0 ms
6,820 KB |
testcase_02 | AC | 1 ms
6,820 KB |
testcase_03 | AC | 1 ms
5,248 KB |
testcase_04 | MLE | - |
testcase_05 | AC | 2 ms
5,120 KB |
testcase_06 | RE | - |
testcase_07 | MLE | - |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | RE | - |
testcase_13 | RE | - |
testcase_14 | MLE | - |
testcase_15 | AC | 1,148 ms
50,048 KB |
testcase_16 | TLE | - |
testcase_17 | AC | 3,842 ms
175,104 KB |
testcase_18 | MLE | - |
ソースコード
#include <stdio.h> #include <stdlib.h> int main(void) { long w, h, n, s, k, a, b, c; int sum = 0; int** card; scanf("%d", &w); scanf("%d", &h); scanf("%d", &n); card = (int**)malloc(sizeof(int*) * w); for (b = 0; b < w; b++) card[b] = (int*)malloc(sizeof(int) * h); for (b = 0; b < w; b++) for (c = 0; c < h; c++) card[b][c] = 0; for (a = 0; a < n; a++) { scanf("%d %d", &s, &k); for (b = 0; b < w; b++) { for (c = 0; c < h; c++) { if (b == s - 1 && c == k - 1) card[b][c] = 2; else if (card[b][c] != 2) { if (b == s - 1 && c != k - 1) card[b][c] = 1; if (b != s - 1 && c == k - 1) card[b][c] = 1; } } } } for (b = 0; b < w; b++) for (c = 0; c < h; c++) if (card[b][c] == 1) sum += card[b][c]; printf("%d\n", sum); for (b = 0; b < w; b++) free(card[b]); free(card); return EXIT_SUCCESS; }