提出 #75860441
ソースコード 拡げる
import java.util.*;
public class Main
{
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
int row = sc.nextInt();
int col = sc.nextInt();
int[][] dir = new int[][]{{1, 0}, {-1, 0}, {0, 1}, {0, -1}};
for(int i = 0; i<row; i++){
for(int j = 0; j<col; j++){
int count = 0;
for(int[] d : dir){
int x = i + d[0], y = j + d[1];
if(x >= 0 && y >= 0 && x < row && y < col){
count++;
}
}
System.out.print(count + " ");
}
System.out.println();
}
return;
}
}
提出情報
| 提出日時 | |
|---|---|
| 問題 | B - Count Adjacent Cells |
| ユーザ | jayeshsolanki |
| 言語 | Java24 (OpenJDK 24.0.2) |
| 得点 | 200 |
| コード長 | 647 Byte |
| 結果 | AC |
| 実行時間 | 93 ms |
| メモリ | 40844 KiB |
ジャッジ結果
| セット名 | Sample | All | ||||
|---|---|---|---|---|---|---|
| 得点 / 配点 | 0 / 0 | 200 / 200 | ||||
| 結果 |
|
|
| セット名 | テストケース |
|---|---|
| Sample | 00-sample-01.txt, 00-sample-02.txt, 00-sample-03.txt |
| All | 00-sample-01.txt, 00-sample-02.txt, 00-sample-03.txt, 01-01.txt, 01-02.txt, 01-03.txt, 01-04.txt, 01-05.txt, 01-06.txt, 01-07.txt, 01-08.txt, 01-09.txt, 01-10.txt, 01-11.txt, 01-12.txt, 01-13.txt, 01-14.txt, 01-15.txt, 01-16.txt, 01-17.txt, 01-18.txt, 01-19.txt |
| ケース名 | 結果 | 実行時間 | メモリ |
|---|---|---|---|
| 00-sample-01.txt | AC | 78 ms | 40688 KiB |
| 00-sample-02.txt | AC | 75 ms | 40388 KiB |
| 00-sample-03.txt | AC | 74 ms | 40364 KiB |
| 01-01.txt | AC | 71 ms | 40824 KiB |
| 01-02.txt | AC | 69 ms | 39972 KiB |
| 01-03.txt | AC | 66 ms | 39800 KiB |
| 01-04.txt | AC | 72 ms | 40832 KiB |
| 01-05.txt | AC | 70 ms | 39788 KiB |
| 01-06.txt | AC | 74 ms | 40188 KiB |
| 01-07.txt | AC | 71 ms | 40140 KiB |
| 01-08.txt | AC | 70 ms | 40236 KiB |
| 01-09.txt | AC | 66 ms | 40016 KiB |
| 01-10.txt | AC | 68 ms | 39932 KiB |
| 01-11.txt | AC | 67 ms | 40152 KiB |
| 01-12.txt | AC | 70 ms | 40556 KiB |
| 01-13.txt | AC | 84 ms | 40620 KiB |
| 01-14.txt | AC | 91 ms | 40340 KiB |
| 01-15.txt | AC | 70 ms | 40660 KiB |
| 01-16.txt | AC | 93 ms | 40544 KiB |
| 01-17.txt | AC | 69 ms | 40164 KiB |
| 01-18.txt | AC | 90 ms | 40844 KiB |
| 01-19.txt | AC | 67 ms | 40332 KiB |