結果

問題 No.987 N×Mマス計算(基本)
ユーザー Takayuki HirotaTakayuki Hirota
提出日時 2020-12-15 10:57:30
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 141 ms / 2,000 ms
コード長 173 bytes
コンパイル時間 1,462 ms
コンパイル使用メモリ 81,396 KB
実行使用メモリ 79,096 KB
最終ジャッジ日時 2023-10-20 05:52:46
合計ジャッジ時間 3,088 ms
ジャッジサーバーID
(参考情報)
judge14 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
53,324 KB
testcase_01 AC 37 ms
53,324 KB
testcase_02 AC 100 ms
77,452 KB
testcase_03 AC 59 ms
72,756 KB
testcase_04 AC 94 ms
77,020 KB
testcase_05 AC 82 ms
76,620 KB
testcase_06 AC 97 ms
77,400 KB
testcase_07 AC 74 ms
76,268 KB
testcase_08 AC 40 ms
55,504 KB
testcase_09 AC 41 ms
55,508 KB
testcase_10 AC 42 ms
57,584 KB
testcase_11 AC 98 ms
77,232 KB
testcase_12 AC 105 ms
77,504 KB
testcase_13 AC 69 ms
76,044 KB
testcase_14 AC 40 ms
55,476 KB
testcase_15 AC 74 ms
76,284 KB
testcase_16 AC 114 ms
77,856 KB
testcase_17 AC 96 ms
77,000 KB
testcase_18 AC 110 ms
77,688 KB
testcase_19 AC 141 ms
79,096 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

f=lambda:map(int,input().split())
n,m=f()
a=[]
*b,=input().split()
for i in range(n):
	a+=[input()]
	
for y in range(n):
	print(*[eval(a[y]+b[0]+b[x+1]) for x in range(m)])
0