結果

問題 No.987 N×Mマス計算(基本)
ユーザー raven7959raven7959
提出日時 2021-09-06 10:50:59
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 45 ms / 2,000 ms
コード長 303 bytes
コンパイル時間 243 ms
コンパイル使用メモリ 82,856 KB
実行使用メモリ 66,464 KB
最終ジャッジ日時 2024-06-02 02:42:08
合計ジャッジ時間 2,098 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
52,356 KB
testcase_01 AC 34 ms
52,932 KB
testcase_02 AC 43 ms
65,428 KB
testcase_03 AC 44 ms
64,224 KB
testcase_04 AC 45 ms
63,536 KB
testcase_05 AC 42 ms
62,516 KB
testcase_06 AC 44 ms
64,912 KB
testcase_07 AC 45 ms
64,280 KB
testcase_08 AC 34 ms
52,976 KB
testcase_09 AC 35 ms
53,908 KB
testcase_10 AC 33 ms
53,408 KB
testcase_11 AC 43 ms
64,568 KB
testcase_12 AC 44 ms
65,908 KB
testcase_13 AC 45 ms
64,272 KB
testcase_14 AC 34 ms
52,724 KB
testcase_15 AC 44 ms
64,168 KB
testcase_16 AC 45 ms
65,256 KB
testcase_17 AC 45 ms
64,888 KB
testcase_18 AC 45 ms
65,612 KB
testcase_19 AC 45 ms
66,464 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,M=map(int,input().split())
L=list(input().split())
B=list(map(int,L[1:]))
A=[int(input()) for _ in range(N)]
ANS=[[0]*M for _ in range(N)]
def f(x,y):
  if L[0]=="+":
    return x+y
  else:
    return x*y
for i in range(N):
  for j in range(M):
    ANS[i][j]=f(A[i],B[j])
for ans in ANS:
  print(*ans)
0