結果

問題 No.987 N×Mマス計算(基本)
ユーザー YU HiroseYU Hirose
提出日時 2024-06-28 22:33:31
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 60 ms / 2,000 ms
コード長 297 bytes
コンパイル時間 554 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 64,512 KB
最終ジャッジ日時 2024-06-28 22:33:34
合計ジャッジ時間 2,063 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,840 KB
testcase_01 AC 41 ms
51,712 KB
testcase_02 AC 59 ms
63,104 KB
testcase_03 AC 53 ms
61,440 KB
testcase_04 AC 54 ms
62,720 KB
testcase_05 AC 53 ms
62,336 KB
testcase_06 AC 55 ms
62,848 KB
testcase_07 AC 55 ms
62,336 KB
testcase_08 AC 43 ms
52,352 KB
testcase_09 AC 41 ms
52,480 KB
testcase_10 AC 45 ms
52,736 KB
testcase_11 AC 57 ms
62,976 KB
testcase_12 AC 57 ms
63,360 KB
testcase_13 AC 54 ms
62,080 KB
testcase_14 AC 41 ms
51,712 KB
testcase_15 AC 56 ms
62,336 KB
testcase_16 AC 55 ms
63,744 KB
testcase_17 AC 58 ms
62,720 KB
testcase_18 AC 58 ms
63,488 KB
testcase_19 AC 60 ms
64,512 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, m = map(int, input().split())
op, *b_ = input().split()
b = list(map(int, b_))
a = [int(input()) for _ in range(n)]
for i in range(n):
    res = []
    for j in range(m):
        if op == "+":
            res.append(a[i] + b[j])
        else:
            res.append(a[i] * b[j])
    print(*res)
0