結果
問題 | No.82 市松模様 |
ユーザー | kaoetaya |
提出日時 | 2016-11-10 15:24:50 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 172 ms / 5,000 ms |
コード長 | 780 bytes |
コンパイル時間 | 3,116 ms |
コンパイル使用メモリ | 77,276 KB |
実行使用メモリ | 41,976 KB |
最終ジャッジ日時 | 2024-05-04 01:21:38 |
合計ジャッジ時間 | 5,044 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 103 ms
40,008 KB |
testcase_01 | AC | 102 ms
40,076 KB |
testcase_02 | AC | 111 ms
41,284 KB |
testcase_03 | AC | 104 ms
40,256 KB |
testcase_04 | AC | 106 ms
40,284 KB |
testcase_05 | AC | 114 ms
41,320 KB |
testcase_06 | AC | 121 ms
41,336 KB |
testcase_07 | AC | 139 ms
41,488 KB |
testcase_08 | AC | 172 ms
41,976 KB |
testcase_09 | AC | 172 ms
41,632 KB |
ソースコード
import java.util.Scanner; public class pre { public static void main(String[] args) { Scanner s = new Scanner(System.in); int w = s.nextInt(),h = s.nextInt(); String c = s.next(); String[] str = new String[w*h]; for(int i=0;i<w*h;i++){ if(i >= w && i%w == 0 && str[i-1].equals("B") && w%2 == 0){ str[i] = "B"; } else if(i >= w && i%w == 0 && str[i-1].equals("W") && w%2 == 0){ str[i] = "W"; } else if(c.equals("B")){ str[i] = c; c = "W"; } else if(c.equals("W")){ str[i] = c; c = "B"; } } int cnt=0; for(int i=0;i<w*h;i++){ if(cnt == w){ System.out.println(); cnt = 0; System.out.print(str[i]); cnt++; } else{ System.out.print(str[i]); cnt++; } } } }