結果
問題 | No.1141 田グリッド |
ユーザー | terasa |
提出日時 | 2022-05-30 20:13:04 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,331 bytes |
コンパイル時間 | 254 ms |
コンパイル使用メモリ | 82,252 KB |
実行使用メモリ | 88,576 KB |
最終ジャッジ日時 | 2024-09-21 00:53:36 |
合計ジャッジ時間 | 8,426 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 44 ms
54,272 KB |
testcase_01 | AC | 44 ms
54,272 KB |
testcase_02 | AC | 49 ms
54,784 KB |
testcase_03 | AC | 45 ms
54,912 KB |
testcase_04 | AC | 44 ms
54,912 KB |
testcase_05 | AC | 45 ms
54,528 KB |
testcase_06 | AC | 44 ms
54,912 KB |
testcase_07 | AC | 46 ms
54,400 KB |
testcase_08 | AC | 60 ms
65,792 KB |
testcase_09 | AC | 57 ms
64,640 KB |
testcase_10 | AC | 59 ms
65,792 KB |
testcase_11 | AC | 56 ms
65,280 KB |
testcase_12 | AC | 62 ms
67,328 KB |
testcase_13 | AC | 213 ms
88,576 KB |
testcase_14 | AC | 242 ms
83,712 KB |
testcase_15 | AC | 203 ms
77,952 KB |
testcase_16 | AC | 214 ms
78,080 KB |
testcase_17 | AC | 213 ms
78,208 KB |
testcase_18 | AC | 207 ms
79,488 KB |
testcase_19 | AC | 216 ms
80,128 KB |
testcase_20 | AC | 205 ms
80,128 KB |
testcase_21 | AC | 213 ms
78,208 KB |
testcase_22 | AC | 213 ms
78,720 KB |
testcase_23 | AC | 212 ms
78,208 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)