結果

問題 No.2692 How Many Times Reached?
ユーザー kikueplkikuepl
提出日時 2024-02-13 01:43:06
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 42 ms / 2,000 ms
コード長 627 bytes
コンパイル時間 268 ms
コンパイル使用メモリ 82,184 KB
実行使用メモリ 60,232 KB
最終ジャッジ日時 2024-09-29 10:14:22
合計ジャッジ時間 3,207 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,032 KB
testcase_01 AC 37 ms
52,508 KB
testcase_02 AC 37 ms
52,136 KB
testcase_03 AC 38 ms
52,784 KB
testcase_04 AC 39 ms
54,364 KB
testcase_05 AC 37 ms
52,944 KB
testcase_06 AC 37 ms
53,304 KB
testcase_07 AC 37 ms
52,268 KB
testcase_08 AC 37 ms
52,252 KB
testcase_09 AC 37 ms
52,568 KB
testcase_10 AC 36 ms
52,712 KB
testcase_11 AC 36 ms
52,640 KB
testcase_12 AC 36 ms
52,252 KB
testcase_13 AC 36 ms
53,380 KB
testcase_14 AC 37 ms
52,572 KB
testcase_15 AC 37 ms
52,456 KB
testcase_16 AC 37 ms
53,120 KB
testcase_17 AC 36 ms
52,552 KB
testcase_18 AC 36 ms
52,676 KB
testcase_19 AC 35 ms
52,932 KB
testcase_20 AC 36 ms
52,188 KB
testcase_21 AC 37 ms
53,008 KB
testcase_22 AC 37 ms
54,360 KB
testcase_23 AC 37 ms
52,968 KB
testcase_24 AC 37 ms
52,108 KB
testcase_25 AC 37 ms
52,144 KB
testcase_26 AC 37 ms
52,304 KB
testcase_27 AC 36 ms
52,560 KB
testcase_28 AC 37 ms
52,884 KB
testcase_29 AC 36 ms
53,424 KB
testcase_30 AC 38 ms
52,816 KB
testcase_31 AC 37 ms
52,212 KB
testcase_32 AC 38 ms
52,812 KB
testcase_33 AC 37 ms
53,252 KB
testcase_34 AC 41 ms
60,096 KB
testcase_35 AC 40 ms
57,600 KB
testcase_36 AC 40 ms
59,056 KB
testcase_37 AC 42 ms
59,628 KB
testcase_38 AC 41 ms
60,232 KB
testcase_39 AC 41 ms
59,184 KB
testcase_40 AC 41 ms
57,864 KB
testcase_41 AC 41 ms
59,108 KB
testcase_42 AC 40 ms
58,112 KB
testcase_43 AC 41 ms
59,780 KB
testcase_44 AC 41 ms
58,492 KB
testcase_45 AC 37 ms
52,232 KB
testcase_46 AC 42 ms
58,844 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def f(n, grid):
    ans = 0
    for row in grid:
        if row.count('A') == n-1 and row.count('.') == 1:
            ans += 1
    for col in range(n):
        col_val = [grid[row][col] for row in range(n)]
        if col_val.count('A') == n-1 and col_val.count('.') == 1:
            ans += 1
    naname1 = [grid[i][i] for i in range(n)]
    if naname1.count('A') == n-1 and naname1.count('.') == 1:
        ans += 1
    naname2 = [grid[i][n-1-i] for i in range(n)]
    if naname2.count('A') == n-1 and naname2.count('.') == 1:
        ans += 1
    return ans
n=int(input())
grid=[input() for _ in range(n)]
print(f(n, grid))
0