結果

問題 No.987 N×Mマス計算(基本)
ユーザー tnodinotnodino
提出日時 2022-02-04 20:39:43
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 153 ms / 2,000 ms
コード長 250 bytes
コンパイル時間 261 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 79,104 KB
最終ジャッジ日時 2024-06-11 11:22:24
合計ジャッジ時間 2,893 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
51,968 KB
testcase_01 AC 40 ms
51,584 KB
testcase_02 AC 111 ms
78,336 KB
testcase_03 AC 69 ms
74,112 KB
testcase_04 AC 97 ms
77,312 KB
testcase_05 AC 102 ms
76,928 KB
testcase_06 AC 137 ms
77,696 KB
testcase_07 AC 101 ms
76,928 KB
testcase_08 AC 48 ms
55,680 KB
testcase_09 AC 47 ms
56,192 KB
testcase_10 AC 50 ms
56,704 KB
testcase_11 AC 118 ms
78,208 KB
testcase_12 AC 128 ms
78,080 KB
testcase_13 AC 78 ms
76,416 KB
testcase_14 AC 44 ms
55,040 KB
testcase_15 AC 92 ms
76,672 KB
testcase_16 AC 123 ms
78,848 KB
testcase_17 AC 101 ms
77,312 KB
testcase_18 AC 123 ms
78,208 KB
testcase_19 AC 153 ms
79,104 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,M = map(int,input().split())
L = list(input().split())
op = L[0]
B = list(map(int, L[1:]))
A = list(int(input()) for _ in range(N))
for i in range(N):
    ans = []
    for j in range(M):
        ans.append(eval(f'{A[i]}{op}{B[j]}'))
    print(*ans)
0