結果

問題 No.2692 How Many Times Reached?
ユーザー ButterflvButterflv
提出日時 2024-04-30 11:11:45
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 487 bytes
コンパイル時間 421 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 59,264 KB
最終ジャッジ日時 2024-11-20 05:30:17
合計ジャッジ時間 3,889 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,352 KB
testcase_01 AC 38 ms
51,968 KB
testcase_02 AC 39 ms
51,968 KB
testcase_03 AC 38 ms
51,584 KB
testcase_04 AC 39 ms
52,352 KB
testcase_05 AC 38 ms
51,840 KB
testcase_06 WA -
testcase_07 AC 40 ms
51,712 KB
testcase_08 AC 38 ms
51,840 KB
testcase_09 WA -
testcase_10 AC 39 ms
51,712 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 39 ms
52,352 KB
testcase_14 AC 39 ms
51,840 KB
testcase_15 AC 39 ms
51,712 KB
testcase_16 AC 39 ms
51,968 KB
testcase_17 AC 40 ms
51,840 KB
testcase_18 WA -
testcase_19 AC 39 ms
51,840 KB
testcase_20 WA -
testcase_21 AC 39 ms
51,712 KB
testcase_22 WA -
testcase_23 AC 38 ms
51,712 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 39 ms
52,352 KB
testcase_27 WA -
testcase_28 WA -
testcase_29 AC 38 ms
51,712 KB
testcase_30 AC 39 ms
51,968 KB
testcase_31 AC 39 ms
52,224 KB
testcase_32 AC 39 ms
51,840 KB
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
testcase_37 WA -
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
testcase_41 WA -
testcase_42 WA -
testcase_43 WA -
testcase_44 WA -
testcase_45 AC 39 ms
51,840 KB
testcase_46 AC 44 ms
59,008 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
S=[input() for i in range(N)]
ans=0
for i in range(N):
  if S[i].count("A")==N-1 and S[i].count(".")==1:
    ans+=1
for i in range(N):
  arr=[]
  for j in range(N):
    arr.append(S[j][i])
  if arr.count("A")==N-1 and S[i].count(".")==1:
    ans+=1
arr=[]
for i in range(N):
  arr.append(S[i][i])
if arr.count("A")==N-1 and arr.count(".")==1:
  ans+=1

arr=[]
for i in range(N):
  arr.append(S[i][N-i-1])
if arr.count("A")==N-1 and arr.count(".")==1:
  ans+=1

print(ans)
0