結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
51,840 KB
testcase_01 AC 36 ms
51,968 KB
testcase_02 AC 102 ms
77,552 KB
testcase_03 AC 66 ms
72,704 KB
testcase_04 AC 92 ms
77,440 KB
testcase_05 AC 82 ms
77,440 KB
testcase_06 AC 102 ms
77,440 KB
testcase_07 AC 78 ms
76,636 KB
testcase_08 AC 43 ms
55,040 KB
testcase_09 AC 43 ms
55,680 KB
testcase_10 AC 43 ms
56,192 KB
testcase_11 AC 100 ms
77,984 KB
testcase_12 AC 107 ms
77,668 KB
testcase_13 AC 72 ms
76,672 KB
testcase_14 AC 41 ms
54,016 KB
testcase_15 AC 76 ms
76,684 KB
testcase_16 AC 114 ms
78,500 KB
testcase_17 AC 96 ms
77,184 KB
testcase_18 AC 109 ms
78,104 KB
testcase_19 AC 140 ms
79,336 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