結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 506 ms
43,532 KB
testcase_01 AC 505 ms
43,804 KB
testcase_02 AC 508 ms
43,920 KB
testcase_03 AC 506 ms
43,688 KB
testcase_04 AC 508 ms
43,932 KB
testcase_05 AC 511 ms
43,532 KB
testcase_06 AC 514 ms
43,808 KB
testcase_07 AC 506 ms
43,548 KB
testcase_08 AC 504 ms
43,800 KB
testcase_09 AC 505 ms
43,812 KB
testcase_10 AC 504 ms
43,688 KB
testcase_11 AC 508 ms
44,040 KB
testcase_12 AC 520 ms
43,436 KB
testcase_13 AC 507 ms
43,808 KB
testcase_14 AC 504 ms
43,920 KB
testcase_15 AC 503 ms
43,808 KB
testcase_16 AC 502 ms
43,424 KB
testcase_17 AC 505 ms
43,424 KB
testcase_18 AC 500 ms
43,684 KB
testcase_19 AC 509 ms
43,932 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