結果

問題 No.987 N×Mマス計算(基本)
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2022-04-14 23:30:07
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 145 ms / 2,000 ms
コード長 163 bytes
コンパイル時間 177 ms
コンパイル使用メモリ 82,408 KB
実行使用メモリ 78,848 KB
最終ジャッジ日時 2024-06-06 18:57:23
合計ジャッジ時間 2,862 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
51,584 KB
testcase_01 AC 36 ms
51,584 KB
testcase_02 AC 103 ms
77,184 KB
testcase_03 AC 61 ms
72,320 KB
testcase_04 AC 91 ms
77,440 KB
testcase_05 AC 82 ms
76,544 KB
testcase_06 AC 101 ms
77,568 KB
testcase_07 AC 79 ms
76,416 KB
testcase_08 AC 43 ms
55,168 KB
testcase_09 AC 43 ms
55,680 KB
testcase_10 AC 44 ms
56,704 KB
testcase_11 AC 100 ms
77,696 KB
testcase_12 AC 109 ms
77,788 KB
testcase_13 AC 71 ms
76,160 KB
testcase_14 AC 40 ms
53,760 KB
testcase_15 AC 78 ms
76,416 KB
testcase_16 AC 116 ms
78,080 KB
testcase_17 AC 97 ms
77,440 KB
testcase_18 AC 117 ms
78,008 KB
testcase_19 AC 145 ms
78,848 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,m = map(int,input().split())
L = list(input().split())
op = L[0]
B = L[1:]
for i in range(n):
    a = input()
    ans = [eval(a+op+b) for b in B]
    print(*ans)
0