結果

問題 No.3094 Character Table
ユーザー ああいいああいい
提出日時 2022-04-01 22:03:35
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 41 ms / 2,000 ms
コード長 458 bytes
コンパイル時間 502 ms
コンパイル使用メモリ 82,572 KB
実行使用メモリ 54,120 KB
最終ジャッジ日時 2024-04-30 14:05:31
合計ジャッジ時間 2,264 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
53,964 KB
testcase_01 AC 39 ms
53,152 KB
testcase_02 AC 39 ms
52,480 KB
testcase_03 AC 39 ms
52,884 KB
testcase_04 AC 38 ms
53,180 KB
testcase_05 AC 40 ms
53,200 KB
testcase_06 AC 40 ms
53,092 KB
testcase_07 AC 39 ms
53,828 KB
testcase_08 AC 39 ms
53,304 KB
testcase_09 AC 40 ms
54,120 KB
testcase_10 AC 40 ms
52,812 KB
testcase_11 AC 39 ms
52,592 KB
testcase_12 AC 39 ms
53,424 KB
testcase_13 AC 39 ms
52,416 KB
testcase_14 AC 41 ms
53,512 KB
testcase_15 AC 39 ms
53,476 KB
testcase_16 AC 39 ms
53,296 KB
testcase_17 AC 38 ms
52,904 KB
testcase_18 AC 39 ms
53,132 KB
testcase_19 AC 39 ms
52,708 KB
testcase_20 AC 39 ms
53,264 KB
testcase_21 AC 39 ms
53,028 KB
testcase_22 AC 38 ms
52,600 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
A = [input().split() for _ in range(N)]
import sys
if N == 1:
    print(1)
    exit()
    
for h in range(N):
    for w in range(N):
        if A[h][w] == "?":
            x,y = h,w
        else:
            A[h][w] = int(A[h][w])
u = -1
for w in range(N):
    if w == y:continue
    if A[x][w] != 0:
        u = w
        break
num = 0
for h in range(N):
    if h == x:continue
    num += A[h][y] * A[h][u]
ans = -num // A[x][u]
print(ans)
0