結果

問題 No.987 N×Mマス計算(基本)
ユーザー mlihua09mlihua09
提出日時 2020-08-28 17:50:19
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 526 ms / 2,000 ms
コード長 294 bytes
コンパイル時間 248 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 43,812 KB
最終ジャッジ日時 2024-04-26 12:22:29
合計ジャッジ時間 12,996 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 485 ms
43,492 KB
testcase_01 AC 490 ms
43,660 KB
testcase_02 AC 492 ms
43,428 KB
testcase_03 AC 484 ms
43,656 KB
testcase_04 AC 504 ms
43,296 KB
testcase_05 AC 488 ms
43,808 KB
testcase_06 AC 489 ms
43,812 KB
testcase_07 AC 492 ms
43,660 KB
testcase_08 AC 478 ms
43,788 KB
testcase_09 AC 480 ms
43,664 KB
testcase_10 AC 476 ms
43,664 KB
testcase_11 AC 487 ms
43,532 KB
testcase_12 AC 484 ms
43,364 KB
testcase_13 AC 482 ms
43,804 KB
testcase_14 AC 479 ms
43,428 KB
testcase_15 AC 508 ms
43,548 KB
testcase_16 AC 492 ms
43,556 KB
testcase_17 AC 501 ms
43,532 KB
testcase_18 AC 494 ms
43,560 KB
testcase_19 AC 526 ms
43,548 KB
権限があれば一括ダウンロードができます

ソースコード

diff #


import numpy as np

N, M = map(int, input().split())

B = input().split()

op = B[0]

B = np.array(list(map(int, B[1:])))


if op == '+':
    
    for i in range(N):
        
        print(*(B + int(input())))
    
else:
    
    for i in range(N):
        
        print(*(B * int(input())))
0