結果

問題 No.1910 High Element on Grid
ユーザー tassei903tassei903
提出日時 2022-05-28 15:29:55
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 638 bytes
コンパイル時間 148 ms
コンパイル使用メモリ 82,296 KB
実行使用メモリ 78,592 KB
最終ジャッジ日時 2024-09-20 22:23:27
合計ジャッジ時間 9,011 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,096 KB
testcase_01 WA -
testcase_02 AC 37 ms
52,608 KB
testcase_03 WA -
testcase_04 AC 37 ms
52,096 KB
testcase_05 AC 37 ms
52,352 KB
testcase_06 WA -
testcase_07 AC 38 ms
52,000 KB
testcase_08 AC 37 ms
52,352 KB
testcase_09 AC 38 ms
52,096 KB
testcase_10 WA -
testcase_11 AC 86 ms
77,800 KB
testcase_12 AC 77 ms
77,748 KB
testcase_13 AC 79 ms
77,560 KB
testcase_14 WA -
testcase_15 AC 74 ms
77,464 KB
testcase_16 AC 73 ms
77,220 KB
testcase_17 AC 72 ms
77,696 KB
testcase_18 AC 78 ms
77,824 KB
testcase_19 AC 74 ms
77,488 KB
testcase_20 AC 75 ms
77,504 KB
testcase_21 AC 77 ms
77,548 KB
testcase_22 AC 71 ms
77,224 KB
testcase_23 AC 79 ms
78,208 KB
testcase_24 AC 72 ms
77,212 KB
testcase_25 AC 75 ms
77,756 KB
testcase_26 AC 78 ms
77,768 KB
testcase_27 AC 75 ms
77,952 KB
testcase_28 AC 69 ms
76,824 KB
testcase_29 AC 72 ms
77,044 KB
testcase_30 AC 102 ms
77,288 KB
testcase_31 AC 37 ms
52,096 KB
testcase_32 AC 85 ms
78,592 KB
testcase_33 AC 121 ms
78,440 KB
testcase_34 AC 91 ms
78,372 KB
testcase_35 AC 84 ms
78,336 KB
testcase_36 AC 51 ms
62,464 KB
testcase_37 AC 71 ms
77,172 KB
testcase_38 AC 66 ms
76,928 KB
testcase_39 WA -
testcase_40 WA -
testcase_41 WA -
権限があれば一括ダウンロードができます

ソースコード

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+1

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

for i in a:
    print(*i)
0