結果

問題 No.3094 Character Table
ユーザー ああいいああいい
提出日時 2022-04-01 22:03:35
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 37 ms / 2,000 ms
コード長 458 bytes
コンパイル時間 237 ms
コンパイル使用メモリ 82,224 KB
実行使用メモリ 53,572 KB
最終ジャッジ日時 2024-11-20 09:22:00
合計ジャッジ時間 2,171 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,340 KB
testcase_01 AC 37 ms
53,416 KB
testcase_02 AC 36 ms
52,584 KB
testcase_03 AC 35 ms
52,308 KB
testcase_04 AC 36 ms
52,520 KB
testcase_05 AC 36 ms
52,536 KB
testcase_06 AC 35 ms
53,048 KB
testcase_07 AC 36 ms
53,352 KB
testcase_08 AC 37 ms
52,556 KB
testcase_09 AC 36 ms
53,136 KB
testcase_10 AC 34 ms
52,628 KB
testcase_11 AC 37 ms
52,808 KB
testcase_12 AC 35 ms
53,084 KB
testcase_13 AC 35 ms
52,356 KB
testcase_14 AC 35 ms
52,132 KB
testcase_15 AC 36 ms
53,540 KB
testcase_16 AC 35 ms
52,316 KB
testcase_17 AC 35 ms
52,668 KB
testcase_18 AC 35 ms
52,752 KB
testcase_19 AC 36 ms
52,488 KB
testcase_20 AC 37 ms
52,972 KB
testcase_21 AC 36 ms
52,280 KB
testcase_22 AC 36 ms
53,572 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