結果

問題 No.2692 How Many Times Reached?
ユーザー ButterflvButterflv
提出日時 2024-04-30 11:11:45
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 487 bytes
コンパイル時間 257 ms
コンパイル使用メモリ 82,540 KB
実行使用メモリ 61,200 KB
最終ジャッジ日時 2024-04-30 11:11:48
合計ジャッジ時間 2,945 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,476 KB
testcase_01 AC 34 ms
52,608 KB
testcase_02 AC 35 ms
52,864 KB
testcase_03 AC 34 ms
53,352 KB
testcase_04 AC 34 ms
52,508 KB
testcase_05 AC 31 ms
52,600 KB
testcase_06 WA -
testcase_07 AC 32 ms
52,920 KB
testcase_08 AC 31 ms
53,072 KB
testcase_09 WA -
testcase_10 AC 31 ms
52,796 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 32 ms
52,668 KB
testcase_14 AC 31 ms
52,816 KB
testcase_15 AC 32 ms
52,072 KB
testcase_16 AC 32 ms
53,120 KB
testcase_17 AC 32 ms
52,944 KB
testcase_18 WA -
testcase_19 AC 33 ms
52,236 KB
testcase_20 WA -
testcase_21 AC 32 ms
52,812 KB
testcase_22 WA -
testcase_23 AC 32 ms
52,804 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 32 ms
53,524 KB
testcase_27 WA -
testcase_28 WA -
testcase_29 AC 31 ms
53,840 KB
testcase_30 AC 32 ms
52,820 KB
testcase_31 AC 30 ms
52,948 KB
testcase_32 AC 32 ms
52,252 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 35 ms
53,088 KB
testcase_46 AC 38 ms
60,288 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