結果

問題 No.987 N×Mマス計算(基本)
ユーザー futago0118futago0118
提出日時 2020-05-16 00:28:46
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 111 ms / 2,000 ms
コード長 197 bytes
コンパイル時間 191 ms
コンパイル使用メモリ 11,736 KB
実行使用メモリ 10,044 KB
最終ジャッジ日時 2023-10-19 19:05:57
合計ジャッジ時間 2,672 ms
ジャッジサーバーID
(参考情報)
judge13 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,016 KB
testcase_01 AC 30 ms
10,016 KB
testcase_02 AC 72 ms
10,024 KB
testcase_03 AC 40 ms
10,044 KB
testcase_04 AC 61 ms
10,024 KB
testcase_05 AC 56 ms
10,028 KB
testcase_06 AC 71 ms
10,024 KB
testcase_07 AC 49 ms
10,020 KB
testcase_08 AC 33 ms
10,016 KB
testcase_09 AC 33 ms
10,016 KB
testcase_10 AC 34 ms
10,020 KB
testcase_11 AC 71 ms
10,024 KB
testcase_12 AC 78 ms
10,028 KB
testcase_13 AC 46 ms
10,024 KB
testcase_14 AC 33 ms
10,024 KB
testcase_15 AC 49 ms
10,020 KB
testcase_16 AC 84 ms
10,024 KB
testcase_17 AC 65 ms
10,020 KB
testcase_18 AC 83 ms
10,028 KB
testcase_19 AC 111 ms
10,028 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,m = map(int,input().split())
M = input().split()

M_list = M[1:]

for i in range(n):
    ans = []
    N = input()
    for j in range(m):
        ans.append(eval(M_list[j]+M[0]+N))
    print(*ans)
0