結果

問題 No.1910 High Element on Grid
ユーザー tassei903tassei903
提出日時 2022-05-28 15:32:21
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 103 ms / 2,000 ms
コード長 634 bytes
コンパイル時間 293 ms
コンパイル使用メモリ 82,348 KB
実行使用メモリ 78,448 KB
最終ジャッジ日時 2024-09-20 22:24:06
合計ジャッジ時間 7,710 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,332 KB
testcase_01 AC 37 ms
54,156 KB
testcase_02 AC 36 ms
53,668 KB
testcase_03 AC 36 ms
52,816 KB
testcase_04 AC 37 ms
52,120 KB
testcase_05 AC 39 ms
52,204 KB
testcase_06 AC 38 ms
52,808 KB
testcase_07 AC 37 ms
52,284 KB
testcase_08 AC 36 ms
53,052 KB
testcase_09 AC 36 ms
52,744 KB
testcase_10 AC 39 ms
53,936 KB
testcase_11 AC 74 ms
77,568 KB
testcase_12 AC 77 ms
77,676 KB
testcase_13 AC 76 ms
77,888 KB
testcase_14 AC 82 ms
77,732 KB
testcase_15 AC 71 ms
77,424 KB
testcase_16 AC 72 ms
77,304 KB
testcase_17 AC 72 ms
77,668 KB
testcase_18 AC 77 ms
77,736 KB
testcase_19 AC 75 ms
77,208 KB
testcase_20 AC 74 ms
77,224 KB
testcase_21 AC 78 ms
77,460 KB
testcase_22 AC 73 ms
77,388 KB
testcase_23 AC 79 ms
78,012 KB
testcase_24 AC 71 ms
77,236 KB
testcase_25 AC 76 ms
77,676 KB
testcase_26 AC 74 ms
77,820 KB
testcase_27 AC 75 ms
77,416 KB
testcase_28 AC 74 ms
76,776 KB
testcase_29 AC 71 ms
77,192 KB
testcase_30 AC 73 ms
77,360 KB
testcase_31 AC 39 ms
53,500 KB
testcase_32 AC 85 ms
78,448 KB
testcase_33 AC 103 ms
78,256 KB
testcase_34 AC 88 ms
78,288 KB
testcase_35 AC 85 ms
78,400 KB
testcase_36 AC 50 ms
63,584 KB
testcase_37 AC 71 ms
76,968 KB
testcase_38 AC 65 ms
76,676 KB
testcase_39 AC 55 ms
73,784 KB
testcase_40 AC 50 ms
64,612 KB
testcase_41 AC 66 ms
76,832 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = lambda :sys.stdin.readline()[:-1]
ni = lambda :int(input())
na = lambda :list(map(int,input().split()))
yes = lambda :print("yes");Yes = lambda :print("Yes");YES = lambda : print("YES")
no = lambda :print("no");No = lambda :print("No");NO = lambda : print("NO")
#######################################################################
h,w = na()
r = na()
c = na()

a = [[0 for j in range(w)]for i in range(h)]
for i in range(h-1):
    for j in range(w-1):
        a[i+1][j+1] = i+j+2

a[0][0] = 10**9
for i in range(1,h):
    a[i][0] = w-r[i]+i
for i in range(1,w):
    a[0][i] = h-c[i]+i

for i in a:
    print(*i)
0