結果

問題 No.987 N×Mマス計算(基本)
ユーザー 💕💖💞💕💖💞
提出日時 2020-03-09 12:37:39
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 572 ms / 2,000 ms
コード長 432 bytes
コンパイル時間 114 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 44,080 KB
最終ジャッジ日時 2024-04-25 10:21:01
合計ジャッジ時間 14,375 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 572 ms
43,696 KB
testcase_01 AC 542 ms
43,684 KB
testcase_02 AC 537 ms
43,816 KB
testcase_03 AC 536 ms
43,940 KB
testcase_04 AC 542 ms
43,940 KB
testcase_05 AC 560 ms
44,080 KB
testcase_06 AC 544 ms
43,680 KB
testcase_07 AC 550 ms
43,936 KB
testcase_08 AC 536 ms
43,560 KB
testcase_09 AC 540 ms
43,952 KB
testcase_10 AC 534 ms
43,692 KB
testcase_11 AC 538 ms
43,688 KB
testcase_12 AC 534 ms
43,944 KB
testcase_13 AC 538 ms
43,560 KB
testcase_14 AC 539 ms
44,072 KB
testcase_15 AC 539 ms
44,072 KB
testcase_16 AC 549 ms
43,632 KB
testcase_17 AC 537 ms
43,948 KB
testcase_18 AC 543 ms
43,556 KB
testcase_19 AC 553 ms
43,568 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import numpy as np
n, m = map(int, input().split())
m = np.zeros((m,)).astype(int)
n = np.zeros((n,1)).astype(int)
f1 = input().split()
op = f1.pop(0)
for i, a in enumerate(f1):
    #print('de', a)
    m[i] = int(a)
for i in range(len(n)):
    n[i, 0] = int(input())
# print(m)
# print(n)
if op == "+":
    for l in m+n:
        print(' '.join(l.astype(str)))
elif op == "*":
    for l in m*n:
        print(' '.join(l.astype(str)))
0