結果

問題 No.987 N×Mマス計算(基本)
ユーザー gorugo30gorugo30
提出日時 2021-02-23 15:03:36
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 53 ms / 2,000 ms
コード長 307 bytes
コンパイル時間 690 ms
コンパイル使用メモリ 82,156 KB
実行使用メモリ 66,408 KB
最終ジャッジ日時 2024-09-22 10:36:06
合計ジャッジ時間 2,497 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,772 KB
testcase_01 AC 37 ms
53,428 KB
testcase_02 AC 50 ms
63,740 KB
testcase_03 AC 49 ms
62,664 KB
testcase_04 AC 51 ms
63,796 KB
testcase_05 AC 49 ms
62,448 KB
testcase_06 AC 52 ms
63,456 KB
testcase_07 AC 53 ms
63,776 KB
testcase_08 AC 40 ms
53,652 KB
testcase_09 AC 40 ms
53,412 KB
testcase_10 AC 40 ms
53,276 KB
testcase_11 AC 50 ms
65,212 KB
testcase_12 AC 51 ms
63,512 KB
testcase_13 AC 50 ms
62,820 KB
testcase_14 AC 39 ms
52,952 KB
testcase_15 AC 51 ms
63,752 KB
testcase_16 AC 51 ms
64,260 KB
testcase_17 AC 51 ms
65,072 KB
testcase_18 AC 50 ms
63,388 KB
testcase_19 AC 51 ms
66,408 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, M = map(int, input().split())
B = list(input().split())
op = B[0]
B = list(map(int, B[1:]))
A = [int(input()) for i in range(N)]
for i in range(N):
    for j in range(M):
        if op == "+":
            print(A[i] + B[j], end = " ")
        else:
            print(A[i] * B[j], end = " ")
    print("")
0