結果
問題 | No.82 市松模様 |
ユーザー | rf141 |
提出日時 | 2015-08-10 19:25:16 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 182 ms / 5,000 ms |
コード長 | 606 bytes |
コンパイル時間 | 3,419 ms |
コンパイル使用メモリ | 74,512 KB |
実行使用メモリ | 54,544 KB |
最終ジャッジ日時 | 2024-07-18 06:33:59 |
合計ジャッジ時間 | 4,923 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 129 ms
54,108 KB |
testcase_01 | AC | 111 ms
52,972 KB |
testcase_02 | AC | 118 ms
53,996 KB |
testcase_03 | AC | 112 ms
53,824 KB |
testcase_04 | AC | 126 ms
53,976 KB |
testcase_05 | AC | 121 ms
54,296 KB |
testcase_06 | AC | 131 ms
54,340 KB |
testcase_07 | AC | 125 ms
53,088 KB |
testcase_08 | AC | 182 ms
54,544 KB |
testcase_09 | AC | 174 ms
54,288 KB |
ソースコード
import java.util.*; public class kadomatsu2{ public static void main(String... args){ Scanner scan = new Scanner(System.in); int w = scan.nextInt(); int h = scan.nextInt(); String start = scan.next(); make(w,h,start); } public static void make(int w,int h,String start){ String next = whatNext(start),first=start; for(int i = 1; i <= h; i++){ for(int j = 1; j <= w; j++){ System.out.print((j%2!=0)?first:next); } System.out.print("\n"); next = first; first = whatNext(next); } } public static String whatNext(String start){ return (start.equals("B"))?"W":"B"; } }