結果

問題 No.987 N×Mマス計算(基本)
ユーザー pypypymipypypymi
提出日時 2022-02-11 12:16:44
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 148 ms / 2,000 ms
コード長 245 bytes
コンパイル時間 274 ms
コンパイル使用メモリ 82,224 KB
実行使用メモリ 79,712 KB
最終ジャッジ日時 2024-06-27 06:20:21
合計ジャッジ時間 3,231 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,096 KB
testcase_01 AC 38 ms
52,096 KB
testcase_02 AC 104 ms
77,696 KB
testcase_03 AC 61 ms
73,728 KB
testcase_04 AC 95 ms
77,016 KB
testcase_05 AC 87 ms
77,380 KB
testcase_06 AC 101 ms
77,948 KB
testcase_07 AC 91 ms
76,512 KB
testcase_08 AC 43 ms
55,680 KB
testcase_09 AC 44 ms
56,192 KB
testcase_10 AC 44 ms
56,448 KB
testcase_11 AC 101 ms
77,824 KB
testcase_12 AC 111 ms
77,756 KB
testcase_13 AC 73 ms
76,416 KB
testcase_14 AC 43 ms
54,656 KB
testcase_15 AC 91 ms
76,448 KB
testcase_16 AC 137 ms
78,336 KB
testcase_17 AC 100 ms
77,420 KB
testcase_18 AC 119 ms
78,208 KB
testcase_19 AC 148 ms
79,712 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,k = map(int,input().split())
bn = input().split()
ope = bn[0]
bn = bn[1:]
an = [input() for i in range(n)]
for i in range(n):
    result = []
    for j in range(k):
        result.append(str(eval(an[i]+ope+bn[j])))
    print(*result)
        
0