結果

問題 No.3094 Character Table
ユーザー convexineqconvexineq
提出日時 2022-04-01 22:23:40
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 50 ms / 2,000 ms
コード長 512 bytes
コンパイル時間 350 ms
コンパイル使用メモリ 82,976 KB
実行使用メモリ 61,100 KB
最終ジャッジ日時 2024-04-30 14:31:48
合計ジャッジ時間 1,980 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,724 KB
testcase_01 AC 42 ms
53,300 KB
testcase_02 AC 39 ms
53,552 KB
testcase_03 AC 39 ms
52,476 KB
testcase_04 AC 39 ms
52,708 KB
testcase_05 AC 40 ms
53,216 KB
testcase_06 AC 39 ms
53,420 KB
testcase_07 AC 40 ms
52,664 KB
testcase_08 AC 40 ms
53,304 KB
testcase_09 AC 40 ms
53,048 KB
testcase_10 AC 40 ms
53,052 KB
testcase_11 AC 40 ms
53,616 KB
testcase_12 AC 45 ms
59,296 KB
testcase_13 AC 41 ms
53,092 KB
testcase_14 AC 44 ms
59,464 KB
testcase_15 AC 47 ms
61,100 KB
testcase_16 AC 40 ms
52,876 KB
testcase_17 AC 45 ms
59,292 KB
testcase_18 AC 45 ms
59,752 KB
testcase_19 AC 45 ms
59,716 KB
testcase_20 AC 47 ms
60,724 KB
testcase_21 AC 44 ms
58,988 KB
testcase_22 AC 50 ms
61,044 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