結果

問題 No.82 市松模様
ユーザー sasakitikitisasakitikiti
提出日時 2016-08-03 11:05:47
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 28 ms / 5,000 ms
コード長 724 bytes
コンパイル時間 98 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 10,880 KB
最終ジャッジ日時 2024-04-24 15:11:50
合計ジャッジ時間 1,001 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
10,752 KB
testcase_01 AC 28 ms
10,752 KB
testcase_02 AC 26 ms
10,752 KB
testcase_03 AC 24 ms
10,752 KB
testcase_04 AC 25 ms
10,752 KB
testcase_05 AC 25 ms
10,752 KB
testcase_06 AC 26 ms
10,752 KB
testcase_07 AC 26 ms
10,752 KB
testcase_08 AC 27 ms
10,880 KB
testcase_09 AC 28 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

b="B"
w="W"
a=str()

l,h,c=input().split()
for i in range(int(h)):
    if i==0:
        for j in range(int(l)):
            if j==0:
                if c==b:
                    a=a+b
                else:
                    a=a+w
            else:
                if a[j-1]==b:
                    a=a+w
                else:
                    a=a+b
            j=j+1        
        
    
    else:
        for j in range(int(l)):
            if j==0:
                if a[0]==b:
                    
                    a=w
                else:
                    a=b
            else:
                if a[j-1]==b:
                    a=a+w
                else:
                    a=a+b    
    print(a)
    i=i+1
0