結果

問題 No.987 N×Mマス計算(基本)
ユーザー shimonohnishishimonohnishi
提出日時 2024-06-11 22:52:00
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 57 ms / 2,000 ms
コード長 254 bytes
コンパイル時間 272 ms
コンパイル使用メモリ 82,404 KB
実行使用メモリ 64,256 KB
最終ジャッジ日時 2024-06-11 22:52:02
合計ジャッジ時間 2,384 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
51,840 KB
testcase_01 AC 32 ms
51,712 KB
testcase_02 AC 43 ms
62,592 KB
testcase_03 AC 42 ms
62,060 KB
testcase_04 AC 44 ms
63,104 KB
testcase_05 AC 43 ms
62,464 KB
testcase_06 AC 44 ms
62,592 KB
testcase_07 AC 42 ms
62,464 KB
testcase_08 AC 42 ms
52,480 KB
testcase_09 AC 38 ms
52,352 KB
testcase_10 AC 35 ms
52,480 KB
testcase_11 AC 44 ms
63,232 KB
testcase_12 AC 45 ms
62,848 KB
testcase_13 AC 42 ms
62,720 KB
testcase_14 AC 34 ms
51,968 KB
testcase_15 AC 54 ms
62,336 KB
testcase_16 AC 57 ms
63,104 KB
testcase_17 AC 44 ms
63,104 KB
testcase_18 AC 44 ms
63,360 KB
testcase_19 AC 45 ms
64,256 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, m = map(int, input().split())
op, *A = input().split()
A = [int(a) for a in A]
B = [int(input()) for _ in range(n)]
if op == '+':
    ans = [[a + b for a in A] for b in B]
else:
    ans = [[a * b for a in A] for b in B]
for row in ans:
    print(*row)
0