結果
問題 |
No.987 N×Mマス計算(基本)
|
ユーザー |
![]() |
提出日時 | 2020-04-18 16:07:19 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
AC
|
実行時間 | 42 ms / 2,000 ms |
コード長 | 310 bytes |
コンパイル時間 | 201 ms |
コンパイル使用メモリ | 12,544 KB |
実行使用メモリ | 10,880 KB |
最終ジャッジ日時 | 2024-10-03 23:50:33 |
合計ジャッジ時間 | 1,554 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 2 |
other | AC * 18 |
ソースコード
import sys input=lambda: sys.stdin.readline().rstrip() n,m=map(int,input().split()) B=[str(i) for i in input().split()] def op(x,y): if B[0]=="*": return x*y else: return x+y for _ in range(n): a=int(input()) Ans=[] for i in range(1,m+1): b=int(B[i]) Ans.append(op(a,b)) print(*Ans)