結果
問題 | No.1974 2x2 Flipper |
ユーザー | ks2m |
提出日時 | 2022-06-10 22:50:59 |
言語 | Java (openjdk 23) |
結果 |
AC
|
実行時間 | 202 ms / 2,000 ms |
コード長 | 1,138 bytes |
コンパイル時間 | 2,434 ms |
コンパイル使用メモリ | 78,084 KB |
実行使用メモリ | 48,296 KB |
最終ジャッジ日時 | 2024-09-21 07:09:43 |
合計ジャッジ時間 | 8,151 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 1 |
other | AC * 25 |
ソースコード
import java.io.BufferedReader; import java.io.InputStreamReader; import java.util.Arrays; public class Main { public static void main(String[] args) throws Exception { BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); String[] sa = br.readLine().split(" "); int h = Integer.parseInt(sa[0]); int w = Integer.parseInt(sa[1]); br.close(); int ans = h * w; int[][] a = new int[h][w]; for (int i = 0; i < h; i++) { Arrays.fill(a[i], 1); } if (h % 2 == 0) { if (w % 2 == 0) { } else { ans -= h; for (int i = 0; i < h; i++) { a[i][w - 1] = 0; } } } else { if (w % 2 == 0) { ans -= w; Arrays.fill(a[h - 1], 0); } else { ans -= Math.max(h, w); for (int i = 0; i < h; i++) { a[i][Math.min(i, w - 1)] = 0; } for (int i = h; i < w; i++) { a[h - 1][i] = 0; } } } System.out.println(ans); for (int i = 0; i < h; i++) { StringBuilder sb = new StringBuilder(); for (int j = 0; j < w; j++) { sb.append(a[i][j]).append(' '); } sb.deleteCharAt(sb.length() - 1); System.out.println(sb.toString()); } } }