結果

問題 No.3094 Character Table
ユーザー convexineqconvexineq
提出日時 2022-04-01 22:23:40
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 55 ms / 2,000 ms
コード長 512 bytes
コンパイル時間 170 ms
コンパイル使用メモリ 81,836 KB
実行使用メモリ 59,520 KB
最終ジャッジ日時 2024-11-20 09:59:05
合計ジャッジ時間 2,082 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
52,072 KB
testcase_01 AC 42 ms
52,224 KB
testcase_02 AC 41 ms
51,968 KB
testcase_03 AC 42 ms
52,224 KB
testcase_04 AC 42 ms
51,968 KB
testcase_05 AC 40 ms
52,480 KB
testcase_06 AC 43 ms
51,968 KB
testcase_07 AC 44 ms
52,480 KB
testcase_08 AC 42 ms
52,224 KB
testcase_09 AC 44 ms
52,224 KB
testcase_10 AC 43 ms
52,096 KB
testcase_11 AC 41 ms
52,512 KB
testcase_12 AC 47 ms
58,368 KB
testcase_13 AC 40 ms
51,840 KB
testcase_14 AC 46 ms
57,856 KB
testcase_15 AC 53 ms
59,520 KB
testcase_16 AC 45 ms
52,480 KB
testcase_17 AC 46 ms
58,732 KB
testcase_18 AC 50 ms
58,496 KB
testcase_19 AC 46 ms
58,752 KB
testcase_20 AC 47 ms
59,136 KB
testcase_21 AC 44 ms
57,984 KB
testcase_22 AC 55 ms
59,264 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
if n == 1:
    print(1)
    exit()

A = [[0]*n for _ in range(n)]
for i in range(n):
    r = []
    *a, = input().split()
    for j in range(n):
        A[j][i] = -20 if a[j] == "?" else int(a[j])
        if a[j] == "?":
            x,y = j,i

def check(A):
    def f(i,j): return sum(p*q for p,q in zip(A[i],A[j]))
    
    v = f(0,0)
    for i in range(n):
        for j in range(n):
            if i != j and f(i,j): return 0
    return 1

while not check(A):
    A[x][y] += 1

print(A[x][y])
0