結果
問題 | No.13 囲みたい! |
ユーザー | kuramu |
提出日時 | 2016-02-11 13:18:58 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 767 ms / 5,000 ms |
コード長 | 1,543 bytes |
コンパイル時間 | 1,942 ms |
コンパイル使用メモリ | 76,092 KB |
実行使用メモリ | 39,760 KB |
最終ジャッジ日時 | 2024-10-13 10:48:22 |
合計ジャッジ時間 | 4,505 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 48 ms
36,524 KB |
testcase_01 | AC | 48 ms
36,932 KB |
testcase_02 | AC | 50 ms
36,384 KB |
testcase_03 | AC | 97 ms
39,372 KB |
testcase_04 | AC | 85 ms
38,860 KB |
testcase_05 | AC | 767 ms
39,472 KB |
testcase_06 | AC | 89 ms
38,860 KB |
testcase_07 | AC | 124 ms
39,760 KB |
testcase_08 | AC | 96 ms
39,192 KB |
testcase_09 | AC | 98 ms
39,432 KB |
testcase_10 | AC | 55 ms
36,944 KB |
testcase_11 | AC | 93 ms
39,108 KB |
testcase_12 | AC | 50 ms
37,076 KB |
testcase_13 | AC | 57 ms
37,716 KB |
testcase_14 | AC | 76 ms
37,888 KB |
testcase_15 | AC | 47 ms
36,880 KB |
ソースコード
import java.io.BufferedReader; import java.io.IOException; import java.io.InputStreamReader; public class Main { static int W; static int H; static int[] dx = {-1,1,0,0}; static int[] dy = {0,0,-1,1}; public static void main(String[] args) { BufferedReader stdReader =new BufferedReader(new InputStreamReader(System.in)); try { String[] line = stdReader.readLine().split(" "); W = Integer.parseInt(line[0]); H = Integer.parseInt(line[1]); int[][] board = new int[H][W]; for(int i=0;i<H;i++){ String[] temp = stdReader.readLine().split(" "); for(int j=0;j<W;j++){ board[i][j] = Integer.parseInt(temp[j]); } } for(int i=0;i<H;i++){ for(int j=0;j<W;j++){ if(isCheck(i,j,-1,-1,board,board[i][j])){ System.out.println("possible"); return; } } } System.out.println("impossible"); } catch (IOException e) { e.printStackTrace(); } } public static boolean isCheck(int x,int y,int fromx,int fromy,int[][] board,int num){ board[x][y] = 0; for(int i=0;i<dx.length;i++){ if(x+dx[i]>=0 && x+dx[i]<H && y+dy[i]>=0 && y+dy[i]<W && !(x+dx[i]==fromx && y+dy[i]==fromy)){ if(board[x+dx[i]][y+dy[i]]==0){ return true; } if(board[x+dx[i]][y+dy[i]]==num){ if(isCheck(x+dx[i], y+dy[i],x,y,board,num)){ return true; } } } } board[x][y] = num; return false; } }