結果

問題 No.987 N×Mマス計算(基本)
ユーザー syunsukesyunsuke
提出日時 2020-03-28 11:36:06
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 128 ms / 2,000 ms
コード長 265 bytes
コンパイル時間 223 ms
コンパイル使用メモリ 82,512 KB
実行使用メモリ 79,692 KB
最終ジャッジ日時 2024-06-10 17:12:18
合計ジャッジ時間 2,413 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,480 KB
testcase_01 AC 33 ms
53,412 KB
testcase_02 AC 91 ms
77,736 KB
testcase_03 AC 55 ms
73,392 KB
testcase_04 AC 78 ms
77,224 KB
testcase_05 AC 73 ms
77,108 KB
testcase_06 AC 99 ms
77,760 KB
testcase_07 AC 77 ms
76,796 KB
testcase_08 AC 44 ms
55,252 KB
testcase_09 AC 41 ms
55,700 KB
testcase_10 AC 39 ms
56,880 KB
testcase_11 AC 104 ms
78,032 KB
testcase_12 AC 95 ms
78,168 KB
testcase_13 AC 64 ms
76,516 KB
testcase_14 AC 37 ms
55,000 KB
testcase_15 AC 65 ms
76,384 KB
testcase_16 AC 99 ms
79,048 KB
testcase_17 AC 86 ms
77,468 KB
testcase_18 AC 99 ms
78,144 KB
testcase_19 AC 128 ms
79,692 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

H,W=map(int,input().split())
L=list(input().split())
#print(L)
OP=L[0]
L=L[1:]

#print(OP,L)
ANS=[[0 for i in range(W)]for j in range(H)]
for h in range(H):
    N=input()
    for w in range(W):
        ANS[h][w]=eval(L[w]+OP+N)
for i in range(H):
    print(*ANS[i])
0