結果

問題 No.1910 High Element on Grid
ユーザー siganaisiganai
提出日時 2022-04-29 23:46:33
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 111 ms / 2,000 ms
コード長 595 bytes
コンパイル時間 124 ms
コンパイル使用メモリ 82,300 KB
実行使用メモリ 79,916 KB
最終ジャッジ日時 2024-06-29 05:34:45
合計ジャッジ時間 8,215 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
63,872 KB
testcase_01 AC 52 ms
63,616 KB
testcase_02 AC 53 ms
63,232 KB
testcase_03 AC 54 ms
63,104 KB
testcase_04 AC 54 ms
63,360 KB
testcase_05 AC 49 ms
63,872 KB
testcase_06 AC 48 ms
63,744 KB
testcase_07 AC 49 ms
63,488 KB
testcase_08 AC 49 ms
63,744 KB
testcase_09 AC 48 ms
63,744 KB
testcase_10 AC 50 ms
63,616 KB
testcase_11 AC 84 ms
79,104 KB
testcase_12 AC 83 ms
79,352 KB
testcase_13 AC 85 ms
79,104 KB
testcase_14 AC 97 ms
79,360 KB
testcase_15 AC 81 ms
78,904 KB
testcase_16 AC 79 ms
78,828 KB
testcase_17 AC 79 ms
78,336 KB
testcase_18 AC 87 ms
78,976 KB
testcase_19 AC 80 ms
78,464 KB
testcase_20 AC 79 ms
78,080 KB
testcase_21 AC 83 ms
78,976 KB
testcase_22 AC 77 ms
78,720 KB
testcase_23 AC 111 ms
79,212 KB
testcase_24 AC 81 ms
78,208 KB
testcase_25 AC 88 ms
78,872 KB
testcase_26 AC 78 ms
78,336 KB
testcase_27 AC 80 ms
79,232 KB
testcase_28 AC 75 ms
78,336 KB
testcase_29 AC 76 ms
78,208 KB
testcase_30 AC 78 ms
78,592 KB
testcase_31 AC 59 ms
63,488 KB
testcase_32 AC 94 ms
79,744 KB
testcase_33 AC 89 ms
79,744 KB
testcase_34 AC 88 ms
79,360 KB
testcase_35 AC 91 ms
79,916 KB
testcase_36 AC 57 ms
67,584 KB
testcase_37 AC 75 ms
78,720 KB
testcase_38 AC 70 ms
78,008 KB
testcase_39 AC 72 ms
77,832 KB
testcase_40 AC 66 ms
70,016 KB
testcase_41 AC 79 ms
78,080 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env PyPy3

from collections import Counter, defaultdict, deque
import itertools
import re
import math
from functools import reduce
import operator
import bisect
from heapq import *
import functools
mod=998244353

import sys
input=sys.stdin.readline

h,w=map(int,input().split())
r=list(map(int,input().split()))
c=list(map(int,input().split()))
a = [[0] * w for _ in range(h)]
for i in range(h):
    for j in range(w):
        a[i][j] = i + j + 1
a[0][0] = 10 ** 9
for i in range(1,h):
    a[i][0] += w - r[i]
for i in range(1,w):
    a[0][i] += h - c[i]
for row in a:
    print(*row)
0