結果

問題 No.987 N×Mマス計算(基本)
ユーザー splash9494splash9494
提出日時 2020-05-05 18:49:01
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 55 ms / 2,000 ms
コード長 336 bytes
コンパイル時間 293 ms
コンパイル使用メモリ 82,368 KB
実行使用メモリ 64,000 KB
最終ジャッジ日時 2024-06-27 00:25:14
合計ジャッジ時間 2,171 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
51,840 KB
testcase_01 AC 38 ms
52,352 KB
testcase_02 AC 55 ms
62,976 KB
testcase_03 AC 50 ms
61,952 KB
testcase_04 AC 50 ms
63,104 KB
testcase_05 AC 49 ms
62,848 KB
testcase_06 AC 50 ms
62,976 KB
testcase_07 AC 48 ms
62,208 KB
testcase_08 AC 38 ms
53,120 KB
testcase_09 AC 37 ms
52,736 KB
testcase_10 AC 39 ms
53,248 KB
testcase_11 AC 49 ms
63,620 KB
testcase_12 AC 50 ms
63,664 KB
testcase_13 AC 49 ms
62,208 KB
testcase_14 AC 38 ms
52,480 KB
testcase_15 AC 49 ms
62,720 KB
testcase_16 AC 50 ms
63,488 KB
testcase_17 AC 49 ms
62,976 KB
testcase_18 AC 49 ms
63,744 KB
testcase_19 AC 50 ms
64,000 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

N, M = map(int, input().split())
lf = input().split()
op = lf[0]
Bs = list(map(int, lf[1:]))
As = [int(input()) for _ in range(N)]

calc = (lambda x, y: x + y) if op == '+' else (lambda x, y: x * y)

for j in range(N):
    for i in range(M):
        print(calc(Bs[i], As[j]), end=' ')
    print()
0