結果

問題 No.987 N×Mマス計算(基本)
ユーザー 8ayac8ayac
提出日時 2020-02-14 21:44:27
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 54 ms / 2,000 ms
コード長 361 bytes
コンパイル時間 306 ms
コンパイル使用メモリ 82,332 KB
実行使用メモリ 66,808 KB
最終ジャッジ日時 2024-10-06 11:06:49
合計ジャッジ時間 1,976 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
53,056 KB
testcase_01 AC 41 ms
52,348 KB
testcase_02 AC 54 ms
64,160 KB
testcase_03 AC 50 ms
63,724 KB
testcase_04 AC 51 ms
63,852 KB
testcase_05 AC 51 ms
63,708 KB
testcase_06 AC 52 ms
64,448 KB
testcase_07 AC 51 ms
63,320 KB
testcase_08 AC 44 ms
54,328 KB
testcase_09 AC 39 ms
53,324 KB
testcase_10 AC 39 ms
53,008 KB
testcase_11 AC 52 ms
64,996 KB
testcase_12 AC 53 ms
65,716 KB
testcase_13 AC 50 ms
63,504 KB
testcase_14 AC 38 ms
54,276 KB
testcase_15 AC 51 ms
63,484 KB
testcase_16 AC 52 ms
64,932 KB
testcase_17 AC 52 ms
65,508 KB
testcase_18 AC 53 ms
65,980 KB
testcase_19 AC 54 ms
66,808 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, M = map(int, input().split())
tmp = input().split()
op, B = tmp[0], tmp[1:]
A = [input() for _ in range(N)]

if op == '+':
    for a in A:
        tmp = []
        for b in B:
            tmp.append(int(a)+int(b))
        print(*tmp)
if op == '*':
    for a in A:
        tmp = []
        for b in B:
            tmp.append(int(a)*int(b))
        print(*tmp)
0