結果
問題 | No.1141 田グリッド |
ユーザー | terasa |
提出日時 | 2022-05-30 20:14:19 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,335 bytes |
コンパイル時間 | 125 ms |
コンパイル使用メモリ | 12,928 KB |
実行使用メモリ | 22,784 KB |
最終ジャッジ日時 | 2024-09-21 00:53:54 |
合計ジャッジ時間 | 16,013 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 32 ms
10,880 KB |
testcase_01 | AC | 35 ms
10,880 KB |
testcase_02 | AC | 34 ms
11,008 KB |
testcase_03 | AC | 32 ms
10,880 KB |
testcase_04 | AC | 32 ms
10,880 KB |
testcase_05 | AC | 32 ms
10,880 KB |
testcase_06 | AC | 32 ms
10,880 KB |
testcase_07 | AC | 33 ms
10,880 KB |
testcase_08 | AC | 40 ms
11,136 KB |
testcase_09 | AC | 37 ms
11,008 KB |
testcase_10 | AC | 40 ms
11,008 KB |
testcase_11 | AC | 43 ms
11,392 KB |
testcase_12 | AC | 40 ms
11,136 KB |
testcase_13 | AC | 707 ms
18,532 KB |
testcase_14 | AC | 793 ms
22,784 KB |
testcase_15 | AC | 685 ms
15,104 KB |
testcase_16 | AC | 683 ms
14,976 KB |
testcase_17 | AC | 695 ms
15,104 KB |
testcase_18 | AC | 621 ms
15,360 KB |
testcase_19 | AC | 628 ms
15,232 KB |
testcase_20 | AC | 623 ms
15,232 KB |
testcase_21 | AC | 682 ms
15,104 KB |
testcase_22 | AC | 724 ms
14,976 KB |
testcase_23 | AC | 684 ms
15,104 KB |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | WA | - |
testcase_31 | WA | - |
testcase_32 | WA | - |
testcase_33 | WA | - |
ソースコード
import sys # import pypyjit import itertools import heapq import math from collections import deque, defaultdict import bisect input = sys.stdin.readline sys.setrecursionlimit(10 ** 6) # pypyjit.set_param('max_unroll_recursion=-1') def index_lt(a, x): 'return largest index s.t. A[i] < x or -1 if it does not exist' return bisect.bisect_left(a, x) - 1 def index_le(a, x): 'return largest index s.t. A[i] <= x or -1 if it does not exist' return bisect.bisect_right(a, x) - 1 def index_gt(a, x): 'return smallest index s.t. A[i] > x or len(a) if it does not exist' return bisect.bisect_right(a, x) def index_ge(a, x): 'return smallest index s.t. A[i] >= x or len(a) if it does not exist' return bisect.bisect_left(a, x) H, W = map(int, input().split()) A = [list(map(int, input().split())) for _ in range(H)] mod = 10 ** 9 + 7 R = [] for i in range(H): acc = 1 for j in range(W): acc *= A[i][j] acc %= mod R.append(acc) C = [] for j in range(W): acc = 1 for i in range(H): acc *= A[i][j] acc %= mod C.append(acc) S = 1 for i in range(H): S *= R[i] S %= mod Q = int(input()) for _ in range(Q): r, c = map(lambda x: int(x) - 1, input().split()) print(S * pow(R[r], mod - 2, mod) * pow(C[c], mod - 2, mod) * A[r][c] % mod)