結果
問題 | No.697 池の数はいくつか |
ユーザー | greentea011 |
提出日時 | 2018-10-18 17:18:15 |
言語 | C++11 (gcc 11.4.0) |
結果 |
MLE
|
実行時間 | - |
コード長 | 725 bytes |
コンパイル時間 | 197 ms |
コンパイル使用メモリ | 23,296 KB |
実行使用メモリ | 440,944 KB |
最終ジャッジ日時 | 2024-05-04 06:16:58 |
合計ジャッジ時間 | 9,329 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
6,816 KB |
testcase_01 | AC | 1 ms
6,816 KB |
testcase_02 | AC | 1 ms
6,944 KB |
testcase_03 | AC | 1 ms
6,940 KB |
testcase_04 | AC | 1 ms
6,940 KB |
testcase_05 | AC | 1 ms
6,944 KB |
testcase_06 | AC | 1 ms
6,940 KB |
testcase_07 | AC | 1 ms
6,940 KB |
testcase_08 | AC | 1 ms
6,944 KB |
testcase_09 | AC | 1 ms
6,944 KB |
testcase_10 | AC | 1 ms
6,940 KB |
testcase_11 | AC | 1 ms
6,944 KB |
testcase_12 | AC | 1 ms
6,944 KB |
testcase_13 | AC | 1 ms
6,944 KB |
testcase_14 | AC | 0 ms
6,940 KB |
testcase_15 | AC | 1 ms
6,944 KB |
testcase_16 | AC | 1 ms
6,948 KB |
testcase_17 | AC | 0 ms
6,940 KB |
testcase_18 | AC | 1 ms
6,940 KB |
testcase_19 | AC | 1 ms
6,944 KB |
testcase_20 | AC | 1 ms
6,940 KB |
testcase_21 | AC | 1 ms
6,940 KB |
testcase_22 | AC | 1 ms
6,940 KB |
testcase_23 | AC | 1 ms
6,940 KB |
testcase_24 | AC | 110 ms
11,204 KB |
testcase_25 | AC | 108 ms
9,148 KB |
testcase_26 | AC | 110 ms
10,948 KB |
testcase_27 | AC | 110 ms
10,060 KB |
testcase_28 | AC | 115 ms
10,756 KB |
testcase_29 | MLE | - |
testcase_30 | AC | 973 ms
19,152 KB |
testcase_31 | MLE | - |
testcase_32 | AC | 971 ms
19,032 KB |
testcase_33 | AC | 967 ms
19,168 KB |
testcase_34 | AC | 967 ms
19,088 KB |
コンパイルメッセージ
main.cpp: In function ‘int main()’: main.cpp:26:21: warning: format ‘%d’ expects argument of type ‘int*’, but argument 2 has type ‘bool*’ [-Wformat=] 26 | scanf("%d", &f[i][j]); | ~^ ~~~~~~~~ | | | | | bool* | int* main.cpp:23:10: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 23 | scanf("%d %d", &h, &w); | ~~~~~^~~~~~~~~~~~~~~~~ main.cpp:26:18: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 26 | scanf("%d", &f[i][j]); | ~~~~~^~~~~~~~~~~~~~~~
ソースコード
#include <stdio.h> bool f[3001][3001]; bool c[3001][3001]; int ans=0; int h,w; void check(short i,short j,bool aa){ if ((i<0)||(i>=h)) return; if ((j<0)||(j>=w)) return; if (c[i][j]) return; else if (!f[i][j]) return; else if (aa) { ++ans; } c[i][j]=true; check(i-1,j,false); check(i+1,j,false); check(i,j-1,false); check(i,j+1,false); } int main() { scanf("%d %d", &h, &w); for (short i=0;i<h;i++) { for (short j=0;j<w;j++) { scanf("%d", &f[i][j]); c[i][j]=false; } } for (short i=0;i<h;i++) { for (short j=0;j<w;j++) { check(i,j,true); } } printf("%d\n",ans); return 0; }