結果

問題 No.987 N×Mマス計算(基本)
ユーザー syunsukesyunsuke
提出日時 2020-03-28 11:36:06
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 145 ms / 2,000 ms
コード長 265 bytes
コンパイル時間 446 ms
コンパイル使用メモリ 82,076 KB
実行使用メモリ 80,060 KB
最終ジャッジ日時 2025-01-02 10:58:45
合計ジャッジ時間 2,486 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,548 KB
testcase_01 AC 35 ms
53,364 KB
testcase_02 AC 100 ms
78,220 KB
testcase_03 AC 59 ms
73,840 KB
testcase_04 AC 82 ms
77,708 KB
testcase_05 AC 76 ms
77,296 KB
testcase_06 AC 97 ms
78,088 KB
testcase_07 AC 73 ms
76,996 KB
testcase_08 AC 42 ms
55,756 KB
testcase_09 AC 41 ms
56,484 KB
testcase_10 AC 39 ms
57,008 KB
testcase_11 AC 97 ms
77,936 KB
testcase_12 AC 108 ms
78,448 KB
testcase_13 AC 71 ms
76,792 KB
testcase_14 AC 38 ms
55,176 KB
testcase_15 AC 72 ms
77,196 KB
testcase_16 AC 109 ms
79,248 KB
testcase_17 AC 91 ms
77,808 KB
testcase_18 AC 111 ms
78,572 KB
testcase_19 AC 145 ms
80,060 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