結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 529 ms
43,560 KB
testcase_01 AC 529 ms
43,692 KB
testcase_02 AC 525 ms
43,684 KB
testcase_03 AC 534 ms
43,940 KB
testcase_04 AC 533 ms
43,556 KB
testcase_05 AC 536 ms
43,952 KB
testcase_06 AC 529 ms
43,688 KB
testcase_07 AC 528 ms
43,684 KB
testcase_08 AC 537 ms
44,080 KB
testcase_09 AC 526 ms
43,680 KB
testcase_10 AC 536 ms
43,948 KB
testcase_11 AC 543 ms
43,684 KB
testcase_12 AC 529 ms
43,940 KB
testcase_13 AC 533 ms
44,072 KB
testcase_14 AC 532 ms
43,576 KB
testcase_15 AC 530 ms
43,944 KB
testcase_16 AC 533 ms
44,200 KB
testcase_17 AC 536 ms
43,696 KB
testcase_18 AC 543 ms
43,756 KB
testcase_19 AC 536 ms
43,696 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