結果

問題 No.987 N×Mマス計算(基本)
ユーザー Takayuki HirotaTakayuki Hirota
提出日時 2020-12-15 11:02:33
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 152 ms / 2,000 ms
コード長 138 bytes
コンパイル時間 592 ms
コンパイル使用メモリ 81,764 KB
実行使用メモリ 79,112 KB
最終ジャッジ日時 2023-10-20 05:53:13
合計ジャッジ時間 3,081 ms
ジャッジサーバーID
(参考情報)
judge13 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,272 KB
testcase_01 AC 44 ms
53,272 KB
testcase_02 AC 122 ms
77,228 KB
testcase_03 AC 64 ms
72,676 KB
testcase_04 AC 96 ms
76,700 KB
testcase_05 AC 87 ms
76,524 KB
testcase_06 AC 105 ms
77,108 KB
testcase_07 AC 82 ms
76,208 KB
testcase_08 AC 44 ms
55,452 KB
testcase_09 AC 44 ms
55,456 KB
testcase_10 AC 46 ms
57,532 KB
testcase_11 AC 107 ms
77,264 KB
testcase_12 AC 116 ms
77,396 KB
testcase_13 AC 75 ms
75,956 KB
testcase_14 AC 42 ms
55,424 KB
testcase_15 AC 82 ms
76,192 KB
testcase_16 AC 120 ms
77,788 KB
testcase_17 AC 102 ms
76,896 KB
testcase_18 AC 118 ms
77,732 KB
testcase_19 AC 152 ms
79,112 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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