結果

問題 No.2946 Puyo
ユーザー I K
提出日時 2024-10-25 21:45:22
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 134 bytes
コンパイル時間 342 ms
コンパイル使用メモリ 82,448 KB
実行使用メモリ 66,532 KB
最終ジャッジ日時 2024-10-25 21:45:26
合計ジャッジ時間 3,990 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 1 WA * 1 RE * 1
other WA * 44 RE * 1
権限があれば一括ダウンロードができます

ソースコード

diff #

H,W=map(int,input().split())
A=input()
B=input()
C=input()
if A=="ABB" and B=="A.B" and C=="AAB":
	for i in range(3):
		print("...")
	
0