結果

問題 No.987 N×Mマス計算(基本)
ユーザー kat0rikkat0rik
提出日時 2020-02-27 21:28:04
言語 Go
(1.22.1)
結果
AC  
実行時間 34 ms / 2,000 ms
コード長 476 bytes
コンパイル時間 15,647 ms
コンパイル使用メモリ 237,328 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-10-13 16:01:40
合計ジャッジ時間 15,051 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,820 KB
testcase_01 AC 1 ms
6,816 KB
testcase_02 AC 18 ms
6,816 KB
testcase_03 AC 5 ms
6,820 KB
testcase_04 AC 14 ms
6,816 KB
testcase_05 AC 12 ms
6,816 KB
testcase_06 AC 17 ms
6,820 KB
testcase_07 AC 9 ms
6,816 KB
testcase_08 AC 3 ms
6,820 KB
testcase_09 AC 3 ms
6,816 KB
testcase_10 AC 3 ms
6,820 KB
testcase_11 AC 18 ms
6,820 KB
testcase_12 AC 21 ms
6,816 KB
testcase_13 AC 8 ms
6,816 KB
testcase_14 AC 3 ms
6,816 KB
testcase_15 AC 10 ms
6,816 KB
testcase_16 AC 23 ms
6,816 KB
testcase_17 AC 16 ms
6,816 KB
testcase_18 AC 22 ms
6,816 KB
testcase_19 AC 34 ms
6,820 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package main

import "fmt"

func main() {
	var N, M int
	fmt.Scan(&N, &M)
	var op string
	var plus bool
	fmt.Scan(&op)
	if op == "+" {
		plus = true
	}
	B := make([]int, M)
	for i := range B {
		fmt.Scan(&B[i])
	}
	A := make([]int, N)
	for i := range A {
		fmt.Scan(&A[i])
	}
	for i := 0; i < N; i++ {
		for j := 0; j < M; j++ {
			if j > 0 {
				fmt.Print(" ")
			}
			if plus {
				fmt.Print(A[i] + B[j])
			} else {
				fmt.Print(A[i] * B[j])
			}
		}
		fmt.Println()
	}
}
0