結果

問題 No.987 N×Mマス計算(基本)
ユーザー Takayuki HirotaTakayuki Hirota
提出日時 2020-12-15 10:57:30
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 132 ms / 2,000 ms
コード長 173 bytes
コンパイル時間 226 ms
コンパイル使用メモリ 82,380 KB
実行使用メモリ 79,488 KB
最終ジャッジ日時 2024-09-20 01:33:15
合計ジャッジ時間 2,687 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,712 KB
testcase_01 AC 37 ms
52,096 KB
testcase_02 AC 93 ms
78,064 KB
testcase_03 AC 57 ms
73,472 KB
testcase_04 AC 91 ms
77,952 KB
testcase_05 AC 79 ms
77,104 KB
testcase_06 AC 92 ms
77,696 KB
testcase_07 AC 69 ms
76,652 KB
testcase_08 AC 39 ms
55,680 KB
testcase_09 AC 39 ms
55,552 KB
testcase_10 AC 40 ms
56,576 KB
testcase_11 AC 90 ms
77,696 KB
testcase_12 AC 105 ms
77,952 KB
testcase_13 AC 70 ms
76,596 KB
testcase_14 AC 39 ms
54,656 KB
testcase_15 AC 70 ms
76,928 KB
testcase_16 AC 109 ms
78,336 KB
testcase_17 AC 89 ms
77,308 KB
testcase_18 AC 103 ms
78,200 KB
testcase_19 AC 132 ms
79,488 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